1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/rpc/rpc.go
2016-03-14 10:45:38 +00:00

10 lines
151 B
Go

package rpc
import (
"github.com/micro/go-micro/client"
)
func NewClient(opts ...client.Option) client.Client {
return client.NewClient(opts...)
}