tag and set private tips

This commit is contained in:
wangchuxiao
2022-04-05 10:27:34 +08:00
parent 2b03b57b5c
commit f4921d1317
8 changed files with 2445 additions and 190 deletions
+12
View File
@@ -0,0 +1,12 @@
package getui
type Getui struct {
}
func (g *Getui) Push(userIDList []string, alert, detailContent, platform string) (resp string, err error) {
return "", nil
}
func (g *Getui) Auth(apiKey, secretKey string, timeStamp int64) (token string, err error) {
return "", nil
}
+3
View File
@@ -13,6 +13,9 @@ import (
type JPushResp struct {
}
type JPush struct {
}
func JGAccountListPush(accounts []string, alert, detailContent, platform string) ([]byte, error) {
var pf requestBody.Platform
+6
View File
@@ -0,0 +1,6 @@
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)
}