overflow_discovery/service/service.go

10 lines
179 B
Go
Raw Normal View History

2017-12-04 09:37:39 +00:00
package service
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
}