1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-17 17:44:30 +02:00
2021-10-12 12:55:53 +01:00

17 lines
312 B
Go

// Package mucp provides an mucp client
package mucp
import (
"go-micro.dev/v4/cmd"
"go-micro.dev/v4/client"
)
func init() {
cmd.DefaultClients["mucp"] = NewClient
}
// NewClient returns a new micro client interface
func NewClient(opts ...client.Option) client.Client {
return client.NewClient(opts...)
}