14 lines
149 B
Go
14 lines
149 B
Go
package http
|
|
|
|
type Request struct {
|
|
ConnectPath string // ip
|
|
|
|
Method string
|
|
Path string
|
|
Protocol string
|
|
|
|
Headers []Header
|
|
|
|
Body string
|
|
}
|