natureco-cli 1.0.33 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -372,4 +372,9 @@ function showLogs() {
372
372
  console.log(logs);
373
373
  }
374
374
 
375
+ // Direkt çalıştırılınca worker olarak başlat
376
+ if (require.main === module || process.argv.includes('--gateway-worker')) {
377
+ gatewayServer('--gateway-worker');
378
+ }
379
+
375
380
  module.exports = gatewayServer;