12 lines
400 B
Go
12 lines
400 B
Go
//go:build !darwin && !windows
|
|
|
|
package platform
|
|
|
|
// InitializeNotifications is a no-op on unsupported desktop platforms.
|
|
func InitializeNotifications() {}
|
|
|
|
// Notify is a no-op on platforms without a native notification backend wired up.
|
|
// The desktop client targets macOS and Windows; this keeps the package building
|
|
// on other GOOS (e.g. a Linux `go vet` / CI pass).
|
|
func Notify(_, _ string) {}
|