mirror of
https://github.com/miguelmota/cointop
synced 2024-11-16 21:25:38 +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, "")
|
||
|
}
|