-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotify.go
35 lines (27 loc) · 913 Bytes
/
notify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// go.notify :: notify.go
//
// Copyright (c) 2017-2025 Akinori Hattori <[email protected]>
//
// SPDX-License-Identifier: MIT
//
// Package notify provides an interface for notifications.
package notify
import "errors"
var ErrEvent = errors.New("notify: unknown event")
// Icon represents an icon. Its value is dependent on each implementation.
type Icon any
// Notifier is an interface for notifications.
type Notifier interface {
// Close closes the Notifier.
Close() error
// Register registers the named event to the Notifier. The keys and values
// of the opts are dependent on each implementation.
//
// Notifier may use the icon for notifications.
Register(event string, icon Icon, opts map[string]any) error
// Notify notifies the named event by the specified title and body.
Notify(event, title, body string) error
// Sys returns the implementation of the Notifier.
Sys() any
}