mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|   | package micro | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"github.com/micro/go-micro/client" | ||
|  | 	"golang.org/x/net/context" | ||
|  | ) | ||
|  | 
 | ||
|  | type publisher struct { | ||
|  | 	c     client.Client | ||
|  | 	topic string | ||
|  | } | ||
|  | 
 | ||
|  | func (p *publisher) Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error { | ||
|  | 	return p.c.Publish(ctx, p.c.NewPublication(p.topic, msg)) | ||
|  | } |