mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-12 08:23:58 +02:00
17 lines
312 B
Go
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...)
|
|
}
|