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