replaycli-go/api/http/lib.go

13 lines
165 B
Go
Raw Permalink Normal View History

2021-11-13 19:30:02 +00:00
package http
type HttpRes struct {
Headers map[string]string
Body []byte
}
type HttpReq struct {
Url string
Headers map[string]string
Body []byte
}