mirror of
https://github.com/make-42/hayai.git
synced 2025-01-19 02:47:35 +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
|
||
|
}
|