mirror of
https://github.com/go-micro/go-micro.git
synced 2025-11-29 21:47:44 +02:00
10 lines
151 B
Go
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...)
|
||
|
|
}
|