goldwarden-vaultwarden-bitw.../agent/notify/unimplemented.go

15 lines
275 B
Go
Raw Normal View History

//go:build windows || darwin
package notify
2024-01-19 05:34:48 +01:00
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
}