Command defines a compose CLI command as a func with args
func(context.Context, []string) error
| 99 | |
| 100 | // Command defines a compose CLI command as a func with args |
| 101 | type Command func(context.Context, []string) error |
| 102 | |
| 103 | // CobraCommand defines a cobra command function |
| 104 | type CobraCommand func(context.Context, *cobra.Command, []string) error |
nothing calls this directly
no outgoing calls
no test coverage detected