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

6 lines
141 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 {
2022-04-13 16:20:30 +08:00
Push(userIDList []string, alert, detailContent, operationID string) (resp string, err error)
2022-04-05 10:27:34 +08:00
}