mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-29 20:39:48 +02:00
10 lines
142 B
Go
10 lines
142 B
Go
package client
|
|
|
|
type Request interface {
|
|
Service() string
|
|
Method() string
|
|
ContentType() string
|
|
Request() interface{}
|
|
Headers() Headers
|
|
}
|