mirror of
https://github.com/status-im/status-go.git
synced 2025-02-23 04:08:27 +00:00
11 lines
323 B
Go
11 lines
323 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
|
|
}
|