open-im-server/internal/push/push_interface.go
2022-06-02 18:17:11 +08:00

8 lines
200 B
Go

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)
}