goldwarden/agent/notify/unimplemented.go
2023-12-28 12:58:02 +01:00

12 lines
202 B
Go

//go:build windows || darwin
package notify
func Notify(title string, body string) error {
// no notifications on windows or darwin
return nil
}
func ListenForNotifications() error {
return nil
}