A Notifier notifies
| 17 | |
| 18 | // A Notifier notifies |
| 19 | type Notifier interface { |
| 20 | Push(title string, content string, icon string) |
| 21 | } |
| 22 | |
| 23 | // BeepNotifier just emits a beep on the terminal |
| 24 | type BeepNotifier struct{} |
no outgoing calls
no test coverage detected