8 lines
148 B
Go
8 lines
148 B
Go
package rpc
|
|
|
|
import "git.loafle.net/commons_go/rpc"
|
|
|
|
func RegisterRPC(registry rpc.Registry) {
|
|
registry.RegisterService(&DiscoveryService{}, "")
|
|
}
|