micro/client/rpc/rpc.go

10 lines
151 B
Go
Raw Normal View History

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