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