mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
11 lines
173 B
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, "")
|
|
}
|