Skip to content

Commit 9f318c6

Browse files
Copilotpelikhan
andcommitted
Add mcp-gateway command implementation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 6e52644 commit 9f318c6

2 files changed

Lines changed: 467 additions & 0 deletions

File tree

cmd/gh-aw/main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ Use "` + constants.CLIExtensionPrefix + ` help all" to show help for all command
515515
logsCmd := cli.NewLogsCommand()
516516
auditCmd := cli.NewAuditCommand()
517517
mcpServerCmd := cli.NewMCPServerCommand()
518+
mcpGatewayCmd := cli.NewMCPGatewayCommand()
518519
prCmd := cli.NewPRCommand()
519520
campaignCmd := campaign.NewCommand()
520521
secretsCmd := cli.NewSecretsCommand()
@@ -534,6 +535,7 @@ Use "` + constants.CLIExtensionPrefix + ` help all" to show help for all command
534535
mcpCmd.GroupID = "development"
535536
statusCmd.GroupID = "development"
536537
mcpServerCmd.GroupID = "development"
538+
mcpGatewayCmd.GroupID = "development"
537539
fixCmd.GroupID = "development"
538540

539541
// Execution Commands
@@ -568,6 +570,7 @@ Use "` + constants.CLIExtensionPrefix + ` help all" to show help for all command
568570
rootCmd.AddCommand(auditCmd)
569571
rootCmd.AddCommand(mcpCmd)
570572
rootCmd.AddCommand(mcpServerCmd)
573+
rootCmd.AddCommand(mcpGatewayCmd)
571574
rootCmd.AddCommand(prCmd)
572575
rootCmd.AddCommand(versionCmd)
573576
rootCmd.AddCommand(campaignCmd)

0 commit comments

Comments
 (0)