mirror of
https://github.com/make-42/hayai.git
synced 2025-01-18 18:47:10 +01:00
10 lines
319 B
Go
10 lines
319 B
Go
//go:build !linux && !freebsd && !netbsd && !openbsd && !windows && !darwin && !illumos && !js
|
|
// +build !linux,!freebsd,!netbsd,!openbsd,!windows,!darwin,!illumos,!js
|
|
|
|
package beeep
|
|
|
|
// Alert displays a desktop notification and plays a beep.
|
|
func Alert(title, message, appIcon string) error {
|
|
return ErrUnsupported
|
|
}
|