1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: parse request headers

This commit is contained in:
Alexander Medvednikov
2019-08-01 18:36:36 +02:00
parent 3580179602
commit b57752e67e
2 changed files with 33 additions and 2 deletions

View File

@@ -6,8 +6,8 @@ module http
struct Request {
pub:
// headers []string
headers map_string
headers2 []string
headers map[string]string
method string
// cookies map[string]string
h string