9 lines
123 B
Go
9 lines
123 B
Go
|
|
package notifier
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
type Notifier interface {
|
||
|
|
Notify(ctx context.Context, title, message string) error
|
||
|
|
}
|
||
|
|
|