// Package notify sends desktop notifications when repositories change while // watching. Platforms without a notifier are silent no-ops, never errors. package notify // Send posts a desktop notification. It returns nil when no notifier is // available; a non-nil error means a notifier was found but failed. func Send(title, body string) error { return send(title, body) }