mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
8 lines
200 B
Go
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)
|
|
}
|