9 lines
123 B
Go
9 lines
123 B
Go
package client
|
|
|
|
type Request interface {
|
|
Service() string
|
|
Method() string
|
|
ContentType() string
|
|
Request() interface{}
|
|
}
|