12 lines
		
	
	
		
			242 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			242 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package mucp provides an mucp client
 | |
| package mucp
 | |
| 
 | |
| import (
 | |
| 	"github.com/micro/go-micro/client"
 | |
| )
 | |
| 
 | |
| // NewClient returns a new micro client interface
 | |
| func NewClient(opts ...client.Option) client.Client {
 | |
| 	return client.NewClient(opts...)
 | |
| }
 |