7 lines
135 B
Go
7 lines
135 B
Go
|
package zenity
|
||
|
|
||
|
// Notify displays a notification.
|
||
|
func Notify(text string, options ...Option) error {
|
||
|
return notify(text, options)
|
||
|
}
|