2023-12-28 12:58:02 +01:00
|
|
|
//go:build windows || darwin
|
|
|
|
|
|
|
|
package notify
|
|
|
|
|
2023-12-28 13:12:18 +01:00
|
|
|
func Notify(title string, body string, actionName string, onclose func()) error {
|
2023-12-28 12:58:02 +01:00
|
|
|
// no notifications on windows or darwin
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ListenForNotifications() error {
|
|
|
|
return nil
|
|
|
|
}
|