()
| 75 | } |
| 76 | |
| 77 | func init() { |
| 78 | RegisterCommand("logs", logsCommand, func(cmd *cobra.Command) { |
| 79 | cmd.AddCommand( |
| 80 | NewCommand("last", logsLastCommand), |
| 81 | NewCommand("show", logsShowCommand), |
| 82 | NewCommand("clear", logsClearCommand), |
| 83 | NewCommand("boomtown", logsBoomtownCommand), |
| 84 | ) |
| 85 | }) |
| 86 | } |
nothing calls this directly
no test coverage detected