This commit is contained in:
crusader 2017-12-01 22:20:34 +09:00
parent 62cb95bd15
commit 2aaf276df2

View File

@ -4,6 +4,6 @@ import (
crr "git.loafle.net/commons_go/rpc/registry"
)
func RegisterRPC(registry crr.RPCRegistry) {
registry.RegisterService(&DiscoveryService{}, "")
func RegisterRPC(rpcRegistry crr.RPCRegistry) {
rpcRegistry.RegisterService(&DiscoveryService{}, "")
}