SimpleCloudNotifier/server/push/notificationClient.go

11 lines
223 B
Go
Raw Normal View History

2022-11-23 19:32:23 +01:00
package push
import (
"blackforestbytes.com/simplecloudnotifier/models"
"context"
)
type NotificationClient interface {
SendNotification(ctx context.Context, client models.Client, msg models.Message) (string, error)
}