overflow_discovery/client/client_handlers.go

20 lines
365 B
Go
Raw Normal View History

2017-10-31 10:27:26 +00:00
package client
import (
"git.loafle.net/commons_go/rpc"
2017-11-30 10:16:55 +00:00
crc "git.loafle.net/commons_go/rpc/client"
2017-11-01 06:47:59 +00:00
"git.loafle.net/commons_go/rpc/protocol/json"
2017-10-31 10:27:26 +00:00
)
2017-11-30 10:16:55 +00:00
func NewClientHandler(registry rpc.Registry) ClientHandler {
2017-10-31 10:27:26 +00:00
ch := &ClientHandlers{}
2017-11-01 03:20:52 +00:00
ch.RPCRegistry = registry
2017-11-01 06:47:59 +00:00
ch.Codec = json.NewClientCodec()
2017-10-31 10:27:26 +00:00
return ch
}
type ClientHandlers struct {
2017-11-30 10:16:55 +00:00
crc.ClientHandlers
2017-10-31 10:27:26 +00:00
}