1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/client/rpc/rpc.go

10 lines
151 B
Go
Raw Normal View History

2016-03-14 12:45:38 +02:00
package rpc
import (
"github.com/micro/go-micro/client"
)
func NewClient(opts ...client.Option) client.Client {
return client.NewClient(opts...)
}