This commit is contained in:
Владимир Федоров
2025-07-20 04:44:00 +07:00
parent 3cfa44b99c
commit 729015c4ea
7 changed files with 85 additions and 51 deletions
+16
View File
@@ -0,0 +1,16 @@
package http
type Request struct {
Method string
Path string
Protocol string
Headers []Header
Body string
}
type Header struct {
Name string
Value string
}