mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-24 10:07:04 +02:00
12 lines
239 B
Go
12 lines
239 B
Go
// Package rpc provides an rpc client
|
|
package rpc
|
|
|
|
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...)
|
|
}
|