mirror of
https://github.com/quexten/goldwarden.git
synced 2024-12-20 01:11:46 +03:00
15 lines
275 B
Go
15 lines
275 B
Go
//go:build windows || 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
|
|
}
|