16 lines
238 B
Go
Raw Normal View History

2017-10-31 19:27:26 +09:00
package client
import (
"git.loafle.net/commons_go/rpc"
2017-11-01 12:20:52 +09:00
"git.loafle.net/commons_go/rpc/client"
2017-10-31 19:27:26 +09:00
)
2017-11-01 12:20:52 +09:00
func New(addr string, registry rpc.Registry) client.Client {
2017-10-31 19:27:26 +09:00
ch := NewClientHandler(addr, registry)
2017-11-01 12:20:52 +09:00
c := client.New(ch)
2017-10-31 19:27:26 +09:00
return c
}