goldwarden/agent/notify/unimplemented.go

13 lines
237 B
Go
Raw Normal View History

//go:build windows || darwin
package notify
2023-12-28 15:12:18 +03:00
func Notify(title string, body string, actionName string, onclose func()) error {
// no notifications on windows or darwin
return nil
}
func ListenForNotifications() error {
return nil
}