1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-11 17:18:28 +02:00
go-micro/client/request.go
2015-05-23 11:53:40 +01:00

9 lines
123 B
Go

package client
type Request interface {
Service() string
Method() string
ContentType() string
Request() interface{}
}