1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-17 17:44:30 +02:00

12 lines
239 B
Go
Raw Normal View History

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