10 lines
175 B
Go
10 lines
175 B
Go
package rpc
|
|
|
|
import (
|
|
crr "git.loafle.net/commons_go/rpc/registry"
|
|
)
|
|
|
|
func RegisterRPC(rpcRegistry crr.RPCRegistry) {
|
|
rpcRegistry.RegisterService(&DiscoveryService{}, "")
|
|
}
|