rpc-go/registry/registry.go
crusader 8587e2e369 ing
2018-04-03 17:58:26 +09:00

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)
}