2018-11-20 13:30:53 +03:00
|
|
|
// Package rpc provides an rpc client
|
2016-03-14 13:45:38 +03:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/micro/go-micro/client"
|
|
|
|
)
|
|
|
|
|
2018-11-20 13:30:53 +03:00
|
|
|
// NewClient returns a new micro client interface
|
2016-03-14 13:45:38 +03:00
|
|
|
func NewClient(opts ...client.Option) client.Client {
|
|
|
|
return client.NewClient(opts...)
|
|
|
|
}
|