| 47 | var _ CommandProvider = (*serveModule)(nil) |
| 48 | |
| 49 | type serveModule struct { |
| 50 | in serveIn |
| 51 | } |
| 52 | |
| 53 | func (s serveModule) ProvideCommand(command *cobra.Command) { |
| 54 | command.AddCommand(newServeCmd(s.in)) |
nothing calls this directly
no outgoing calls
no test coverage detected