Files
agent-lib/internal/notify/notify.go
T

10 lines
296 B
Go
Raw Permalink Normal View History

// Package notify fires user-facing notifications. The platform sender is a
// Windows toast (PowerShell-backed, mirroring go-toast's script); Linux and
// macOS are deliberate no-ops.
package notify
// Sender delivers one notification.
type Sender interface {
Send(title, body string) error
}