| 17 | ) |
| 18 | |
| 19 | type command struct { |
| 20 | description string |
| 21 | usage string // optional; falls back to "/name" |
| 22 | run func(args string) |
| 23 | } |
| 24 | |
| 25 | var commands = map[string]command{} |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected