overflow_discovery/rpc/rpc.go

10 lines
175 B
Go
Raw Normal View History

2017-11-02 06:43:42 +00:00
package rpc
2017-11-15 06:59:43 +00:00
2017-12-01 08:29:54 +00:00
import (
crr "git.loafle.net/commons_go/rpc/registry"
)
2017-11-15 06:59:43 +00:00
2017-12-01 13:20:34 +00:00
func RegisterRPC(rpcRegistry crr.RPCRegistry) {
rpcRegistry.RegisterService(&DiscoveryService{}, "")
2017-11-15 06:59:43 +00:00
}