We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a356e78 commit 6f2196aCopy full SHA for 6f2196a
services/gateway/src/index.ts
@@ -1,7 +1,6 @@
1
#!/usr/bin/env node
2
3
import { Command } from 'commander';
4
-import { getVersionString } from './config/version';
5
import {
6
registerLoginCommand,
7
registerLogoutCommand,
@@ -22,8 +21,7 @@ const program = new Command();
22
21
23
program
24
.name('deploystack')
25
- .description('DeployStack Gateway - Local secure proxy for MCP servers')
26
- .version(getVersionString());
+ .description('DeployStack Gateway - Local secure proxy for MCP servers');
27
28
// Register all commands
29
registerLoginCommand(program);
0 commit comments