hayai/vendor/github.com/gen2brain/beeep/alert_unsupported.go
2024-12-21 17:26:50 +01:00

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
}