1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/mucp/mucp.go
2019-06-08 19:40:44 +01:00

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