mirror of
https://github.com/miguelmota/cointop
synced 2024-11-18 15:25:31 +00:00
9 lines
186 B
Go
9 lines
186 B
Go
|
// +build !linux,!freebsd,!netbsd,!openbsd,!windows,!darwin,!js
|
||
|
|
||
|
package beeep
|
||
|
|
||
|
// Notify sends desktop notification.
|
||
|
func Notify(title, message string) error {
|
||
|
return ErrUnsupported
|
||
|
}
|