some updates

This commit is contained in:
ston1th 2021-12-04 17:53:19 +01:00
commit 1410847c03
43 changed files with 78 additions and 345 deletions

View file

@ -215,7 +215,7 @@ func (c *Context) Form(name string) string {
}
func (c *Context) Var(name string) (ret string) {
ret, _ = mux.Vars(c.Request)[name]
ret = mux.Vars(c.Request)[name]
return
}