rest-go/registry/registry.go

7 lines
182 B
Go
Raw Normal View History

2018-04-10 09:07:52 +00:00
package registry
type RESTInvoker interface {
HasMethod(method string) bool
Invoke(method string, params []string, leadingParams ...interface{}) (result interface{}, err error)
}