mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-25 19:22:46 +08:00
7 lines
213 B
Go
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)
|
|
}
|