()
| 5 | ) |
| 6 | |
| 7 | func newServeCmd() *cobra.Command { |
| 8 | cmd := &cobra.Command{ |
| 9 | Use: "serve", |
| 10 | Short: "Start an agent as a server", |
| 11 | GroupID: "advanced", |
| 12 | } |
| 13 | |
| 14 | cmd.AddCommand(newA2ACmd()) |
| 15 | cmd.AddCommand(newACPCmd()) |
| 16 | cmd.AddCommand(newAPICmd()) |
| 17 | cmd.AddCommand(newChatCmd()) |
| 18 | cmd.AddCommand(newMCPCmd()) |
| 19 | |
| 20 | return cmd |
| 21 | } |
no test coverage detected