singal offline push

This commit is contained in:
wangchuxiao
2022-06-02 19:14:11 +08:00
parent 6996c008d0
commit 409a8311b1
4 changed files with 15 additions and 16 deletions
+9 -3
View File
@@ -1,7 +1,13 @@
package push
import "Open_IM/internal/push/logic"
type OfflinePusher interface {
Push(userIDList []string, alert, detailContent, operationID string, opts logic.PushOpts) (resp string, err error)
Push(userIDList []string, alert, detailContent, operationID string, opts PushOpts) (resp string, err error)
}
type PushOpts struct {
Signal Signal
}
type Signal struct {
ClientMsgID string
}