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

8 lines
200 B
Go
Raw Normal View History

2022-04-05 10:27:34 +08:00
package push
2022-06-02 18:17:11 +08:00
import "Open_IM/internal/push/logic"
2022-04-08 15:40:07 +08:00
type OfflinePusher interface {
2022-06-02 18:17:11 +08:00
Push(userIDList []string, alert, detailContent, operationID string, opts logic.PushOpts) (resp string, err error)
2022-04-05 10:27:34 +08:00
}