You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/pkg/notifier/notiifer.go

11 lines
173 B
Go

package notifier
import (
notifylib "github.com/gen2brain/beeep"
)
// Notify ...
func Notify(title string, msg string) error {
return notifylib.Notify(title, msg, "")
}