micro/client/request.go

9 lines
123 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
package client
type Request interface {
Service() string
Method() string
ContentType() string
Request() interface{}
}