(ch *cmdutil.Helper)
| 6 | ) |
| 7 | |
| 8 | func RuntimeCmd(ch *cmdutil.Helper) *cobra.Command { |
| 9 | cmd := &cobra.Command{ |
| 10 | Use: "runtime", |
| 11 | Short: "Manage a runtime", |
| 12 | } |
| 13 | |
| 14 | cmd.AddCommand(ManagerTokenCmd(ch)) |
| 15 | cmd.AddCommand(ListInstancesCmd(ch)) |
| 16 | cmd.AddCommand(DeleteInstanceCmd(ch)) |
| 17 | |
| 18 | return cmd |
| 19 | } |
no test coverage detected