mirror of
https://github.com/quexten/goldwarden.git
synced 2024-11-30 22:22:51 +03:00
13 lines
202 B
Go
13 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
|
||
|
}
|