2017-12-04 18:37:39 +09:00
|
|
|
package service
|
2017-11-15 15:59:43 +09:00
|
|
|
|
2017-12-01 17:29:54 +09:00
|
|
|
import (
|
|
|
|
crr "git.loafle.net/commons_go/rpc/registry"
|
|
|
|
)
|
2017-11-15 15:59:43 +09:00
|
|
|
|
2017-12-01 22:20:34 +09:00
|
|
|
func RegisterRPC(rpcRegistry crr.RPCRegistry) {
|
|
|
|
rpcRegistry.RegisterService(&DiscoveryService{}, "")
|
2017-11-15 15:59:43 +09:00
|
|
|
}
|