mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 18:55:47 +00:00
12 lines
265 B
Go
12 lines
265 B
Go
package fcm
|
|
|
|
import (
|
|
gofcm "github.com/NaySoftware/go-fcm"
|
|
)
|
|
|
|
// FirebaseClient is a copy of "go-fcm" client methods.
|
|
type FirebaseClient interface {
|
|
NewFcmRegIdsMsg(tokens []string, body interface{}) *gofcm.FcmClient
|
|
Send() (*gofcm.FcmResponseStatus, error)
|
|
}
|