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