You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
304 B
18 lines
304 B
package dummy
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openimsdk/open-im-server/v3/internal/push/offlinepush"
|
|
)
|
|
|
|
func NewClient() *Dummy {
|
|
return &Dummy{}
|
|
}
|
|
|
|
type Dummy struct {
|
|
}
|
|
|
|
func (d *Dummy) Push(ctx context.Context, userIDs []string, title, content string, opts *offlinepush.Opts) error {
|
|
return nil
|
|
}
|