micro/client/mucp/mucp.go

12 lines
245 B
Go
Raw Normal View History

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 (
"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...)
}