27 lines
299 B
Go
27 lines
299 B
Go
package http
|
|
|
|
type Request struct {
|
|
Method string
|
|
Path string
|
|
Protocol string
|
|
|
|
Headers []Header
|
|
|
|
Body []byte
|
|
}
|
|
|
|
type Response struct {
|
|
Protocol string
|
|
StatusCode string
|
|
StatusMessage string
|
|
|
|
Headers []Header
|
|
|
|
Body []byte
|
|
}
|
|
|
|
type Header struct {
|
|
Name string
|
|
Value string
|
|
}
|