1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/client/mucp/mucp.go

12 lines
242 B
Go
Raw Normal View History

2019-06-08 20:40:44 +02:00
// Package mucp provides an mucp client
package mucp
2016-03-14 12:45:38 +02:00
import (
"github.com/micro/go-micro/client"
)
2018-11-20 12:30:53 +02:00
// NewClient returns a new micro client interface
2016-03-14 12:45:38 +02:00
func NewClient(opts ...client.Option) client.Client {
return client.NewClient(opts...)
}