* * Command interface needs to be implemented for a runnable plugin of `cf` * */
| 10 | * |
| 11 | */ |
| 12 | type Plugin interface { |
| 13 | Run(cliConnection CliConnection, args []string) |
| 14 | GetMetadata() PluginMetadata |
| 15 | } |
| 16 | |
| 17 | //go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . CliConnection |
| 18 | /** |
no outgoing calls
no test coverage detected