goldwarden/agent/notify/unimplemented.go
2024-02-04 00:49:42 +01:00

14 lines
264 B
Go

//go:build darwin
package notify
import "time"
func Notify(title string, body string, actionName string, timeout time.Duration, onclose func()) error {
// no notifications on windows or darwin
return nil
}
func ListenForNotifications() error {
return nil
}