Add packages for the defaults

This commit is contained in:
Asim
2016-03-14 10:45:38 +00:00
parent c0b25e7a65
commit 71764564e7
5 changed files with 60 additions and 0 deletions

9
client/rpc/rpc.go Normal file
View File

@@ -0,0 +1,9 @@
package rpc
import (
"github.com/micro/go-micro/client"
)
func NewClient(opts ...client.Option) client.Client {
return client.NewClient(opts...)
}