mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
10 lines
322 B
Go
10 lines
322 B
Go
package fcm
|
|
|
|
import "github.com/NaySoftware/go-fcm"
|
|
|
|
// firebaseClient is a copy of "go-fcm" client methods.
|
|
type firebaseClient interface {
|
|
NewFcmRegIdsMsg(tokens []string, body interface{}) *fcm.FcmClient
|
|
Send() (*fcm.FcmResponseStatus, error)
|
|
SetNotificationPayload(payload *fcm.NotificationPayload) *fcm.FcmClient
|
|
} |