open-im-server/internal/push/push_interface.go
2022-04-05 10:27:34 +08:00

7 lines
213 B
Go

package push
type offlinePusher interface {
auth(apiKey, secretKey string, timeStamp int64) (token string, err error)
push(userIDList []string, alert, detailContent, platform string) (resp string, err error)
}