open-im-server/internal/push/push_interface.go
2022-04-13 16:20:30 +08:00

6 lines
141 B
Go

package push
type OfflinePusher interface {
Push(userIDList []string, alert, detailContent, operationID string) (resp string, err error)
}