18 lines
356 B
Go
18 lines
356 B
Go
|
package push
|
||
|
|
||
|
import (
|
||
|
"blackforestbytes.com/simplecloudnotifier/models"
|
||
|
"context"
|
||
|
_ "embed"
|
||
|
)
|
||
|
|
||
|
type DummyConnector struct{}
|
||
|
|
||
|
func NewDummy() (NotificationClient, error) {
|
||
|
return &DummyConnector{}, nil
|
||
|
}
|
||
|
|
||
|
func (d DummyConnector) SendNotification(ctx context.Context, client models.Client, msg models.Message) (string, error) {
|
||
|
return "%DUMMY%", nil
|
||
|
}
|