2023-12-28 12:58:02 +01:00
|
|
|
//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 {
|
2023-12-28 12:58:02 +01:00
|
|
|
// no notifications on windows or darwin
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ListenForNotifications() error {
|
|
|
|
return nil
|
|
|
|
}
|