| 18 | } |
| 19 | |
| 20 | type Command interface { |
| 21 | // must goroutine safe |
| 22 | name() string |
| 23 | // must goroutine safe |
| 24 | help() string |
| 25 | // must goroutine safe |
| 26 | run(args []string) string |
| 27 | } |
| 28 | |
| 29 | type ExternalCommand struct { |
| 30 | _name string |
no outgoing calls
no test coverage detected