mirror of
https://github.com/prashantgupta24/automatic-mouse-mover.git
synced 2024-12-22 16:34:11 +00:00
17 lines
288 B
Go
17 lines
288 B
Go
package notify
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
gosxnotifier "github.com/deckarep/gosx-notifier"
|
|
)
|
|
|
|
//SendMessage to OSX notification centre
|
|
func SendMessage(msg string) {
|
|
note := gosxnotifier.NewNotification(msg)
|
|
err := note.Push()
|
|
if err != nil {
|
|
fmt.Println("could not send notification")
|
|
}
|
|
}
|