mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
e9c2292776
Switch mockgen to use reflect mode as source mode does not support vendored packages.
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
|
|
}
|