package service import ( crr "git.loafle.net/commons_go/rpc/registry" ) func RegisterRPC(rpcRegistry crr.RPCRegistry) { rpcRegistry.RegisterService(&ConfigService{}, "") rpcRegistry.RegisterService(&DataService{}, "") rpcRegistry.RegisterService(&StateService{}, "") }