mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-01 00:42:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			304 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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
 | |
| }
 |