add client and transport

This commit is contained in:
2025-10-19 13:05:29 +07:00
parent 729015c4ea
commit 6d1bf72d9d
9 changed files with 168 additions and 129 deletions
+13
View File
@@ -0,0 +1,13 @@
package http
type Request struct {
ConnectPath string // ip
Method string
Path string
Protocol string
Headers []Header
Body string
}