Files
open-im-server/internal/push/push_interface.go
T

6 lines
151 B
Go
Raw Normal View History

2022-04-05 10:27:34 +08:00
package push
2022-04-08 15:40:07 +08:00
type OfflinePusher interface {
Push(userIDList []string, alert, detailContent, platform, operationID string) (resp string, err error)
2022-04-05 10:27:34 +08:00
}