SimpleCloudNotifier/scnserver/push/notificationClient.go
Mike Schwörer e397f009b9
All checks were successful
Build Docker and Deploy / Build Docker Container (push) Successful in 1m56s
Build Docker and Deploy / Deploy to Server (push) Successful in 5s
Notifications with new Flutter app [Kinda work!]
2024-06-01 15:37:59 +02:00

11 lines
265 B
Go

package push
import (
"blackforestbytes.com/simplecloudnotifier/models"
"context"
)
type NotificationClient interface {
SendNotification(ctx context.Context, user models.User, client models.Client, channel models.Channel, msg models.Message) (string, error)
}