Florian C.
Results
1
issues of
Florian C.
``` type Request struct { TestInt *int `form:"test_int"` TestString *string `form:"test_string"` } ``` When providing empty value for "test_string" parameter(r.Form["test_string"]=""), Request.TestString will be not nil and set with the zero...