Abstract the Messager struct in the github.com/magodo/spinner
| 7 | |
| 8 | // Abstract the Messager struct in the github.com/magodo/spinner |
| 9 | type Messager interface { |
| 10 | SetStatus(msg string) |
| 11 | SetDetail(msg string) |
| 12 | } |
| 13 | |
| 14 | type stdoutMessager struct { |
| 15 | *log.Logger |
no outgoing calls
no test coverage detected