Notes/notification/pkg.go
2024-03-29 08:06:23 +01:00

6 lines
74 B
Go

package notification
type Notification interface {
Send([]byte) error
}