zenity/notify.go

7 lines
135 B
Go
Raw Normal View History

2020-01-26 11:04:49 -05:00
package zenity
// Notify displays a notification.
func Notify(text string, options ...Option) error {
return notify(text, options)
}