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