1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-17 20:28:06 +02:00

17 lines
312 B
Go
Raw Normal View History

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 (
2021-10-12 12:55:53 +01:00
"go-micro.dev/v4/cmd"
"go-micro.dev/v4/client"
2016-03-14 10:45:38 +00:00
)
2020-12-29 15:49:26 +00:00
func init() {
cmd.DefaultClients["mucp"] = NewClient
}
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...)
}