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

generics: test T{}

This commit is contained in:
Alexander Medvednikov
2020-05-27 06:53:48 +02:00
parent 013fdb8a4b
commit 59711d9c55
3 changed files with 19 additions and 2 deletions

View File

@ -36,14 +36,15 @@ pub const (
)
pub struct Context {
mut:
static_files map[string]string
static_mime_types map[string]string
pub:
req http.Request
conn net.Socket
form map[string]string
// TODO Response
pub mut:
form map[string]string
headers string // response headers
done bool
}