Notes/notification/pkg.go

6 lines
74 B
Go
Raw Normal View History

2024-03-29 08:06:23 +01:00
package notification
type Notification interface {
Send([]byte) error
}