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