check in this cruft

This commit is contained in:
Asim Aslam
2019-06-08 19:40:44 +01:00
parent 95b8147fa1
commit ed4bce3285
12 changed files with 188 additions and 25 deletions

11
client/mucp/mucp.go Normal file
View File

@@ -0,0 +1,11 @@
// 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...)
}