10 lines
296 B
Go
10 lines
296 B
Go
// 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
|
||
|
|
}
|