overflow_discovery/rpc/rpc.go

10 lines
169 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 08:29:54 +00:00
func RegisterRPC(registry crr.RPCRegistry) {
2017-11-15 06:59:43 +00:00
registry.RegisterService(&DiscoveryService{}, "")
}