overflow_probe_container_ne.../service/service.go
crusader 900a5c42dd ing
2017-12-14 15:17:58 +09:00

12 lines
275 B
Go

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{}, "")
}