1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/client/request.go

10 lines
142 B
Go
Raw Normal View History

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