AGPLExperimental returns all AGPL experimental subcommands.
()
| 155 | |
| 156 | // AGPLExperimental returns all AGPL experimental subcommands. |
| 157 | func (r *RootCmd) AGPLExperimental() []*serpent.Command { |
| 158 | return []*serpent.Command{ |
| 159 | r.scaletestCmd(), |
| 160 | r.errorExample(), |
| 161 | r.chatCommand(), |
| 162 | r.mcpCommand(), |
| 163 | r.promptExample(), |
| 164 | r.rptyCommand(), |
| 165 | r.syncCommand(), |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | // AGPL returns all AGPL commands including any non-core commands that are |
| 170 | // duplicated in the Enterprise CLI. |
no test coverage detected