mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
21 lines
316 B
Go
21 lines
316 B
Go
package offlinepush
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type OfflinePusher interface {
|
|
Push(ctx context.Context, userIDs []string, title, content string, opts *Opts) error
|
|
}
|
|
|
|
type Opts struct {
|
|
Signal *Signal
|
|
IOSPushSound string
|
|
IOSBadgeCount bool
|
|
Ex string
|
|
}
|
|
|
|
type Signal struct {
|
|
ClientMsgID string
|
|
}
|