Notifier sends desktop notifications.
| 8 | |
| 9 | // Notifier sends desktop notifications. |
| 10 | type Notifier interface { |
| 11 | Send(title, body string) |
| 12 | } |
| 13 | |
| 14 | // New returns a platform-specific Notifier. The fyne app is used as the |
| 15 | // fallback notifier on platforms where no native implementation is wired up, |
nothing calls this directly
no outgoing calls
no test coverage detected