2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-16 21:25:38 +00:00
cointop/pkg/notifier/notiifer.go

11 lines
173 B
Go
Raw Normal View History

2020-12-21 06:05:14 +00:00
package notifier
import (
notifylib "github.com/gen2brain/beeep"
)
// Notify ...
func Notify(title string, msg string) error {
return notifylib.Notify(title, msg, "")
}