Skip to content

Commit 6f2196a

Browse files
author
Lasim
committed
refactor(gateway): remove version string from command description
1 parent a356e78 commit 6f2196a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

services/gateway/src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env node
22

33
import { Command } from 'commander';
4-
import { getVersionString } from './config/version';
54
import {
65
registerLoginCommand,
76
registerLogoutCommand,
@@ -22,8 +21,7 @@ const program = new Command();
2221

2322
program
2423
.name('deploystack')
25-
.description('DeployStack Gateway - Local secure proxy for MCP servers')
26-
.version(getVersionString());
24+
.description('DeployStack Gateway - Local secure proxy for MCP servers');
2725

2826
// Register all commands
2927
registerLoginCommand(program);

0 commit comments

Comments
 (0)