mirror of
https://github.com/quexten/goldwarden.git
synced 2025-01-10 18:12:35 +01:00
13 lines
237 B
Go
13 lines
237 B
Go
//go:build windows || darwin
|
|
|
|
package notify
|
|
|
|
func Notify(title string, body string, actionName string, onclose func()) error {
|
|
// no notifications on windows or darwin
|
|
return nil
|
|
}
|
|
|
|
func ListenForNotifications() error {
|
|
return nil
|
|
}
|