proxywoman/notifier/notifier_windows.go
2019-12-18 18:08:52 +00:00

15 lines
No EOL
278 B
Go

package notifier
import "gopkg.in/toast.v1"
func Notify(appName string, title string, message string, icon string) error {
notification := toast.Notification{
AppID: appName,
Title: title,
Message: message,
Icon: icon,
};
err := notification.Push();
return err;
}