13 lines
165 B
Go
13 lines
165 B
Go
|
package http
|
||
|
|
||
|
type HttpRes struct {
|
||
|
Headers map[string]string
|
||
|
Body []byte
|
||
|
}
|
||
|
|
||
|
type HttpReq struct {
|
||
|
Url string
|
||
|
Headers map[string]string
|
||
|
Body []byte
|
||
|
}
|