package registry import ( "git.loafle.net/commons_go/rpc/protocol" ) type RPCInvoker interface { HasMethod(method string) bool Invoke(codec protocol.RegistryCodec) (result interface{}, err error) }