net/http/http.go
2025-07-21 02:02:19 +07:00

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
}