11 lines
203 B
Go
11 lines
203 B
Go
|
package registry
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/commons/rpc-go/protocol"
|
||
|
)
|
||
|
|
||
|
type RPCInvoker interface {
|
||
|
HasMethod(method string) bool
|
||
|
Invoke(codec protocol.RegistryCodec) (result interface{}, err error)
|
||
|
}
|