mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-17 17:44:30 +02:00
17 lines
336 B
Go
17 lines
336 B
Go
// Package mucp provides an mucp client
|
|
package mucp
|
|
|
|
import (
|
|
"github.com/asim/go-micro/v3/cmd"
|
|
"github.com/asim/go-micro/v3/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...)
|
|
}
|