some updates

This commit is contained in:
ston1th 2021-12-04 18:02:27 +01:00
commit f5c47ea28a
43 changed files with 80 additions and 356 deletions

View file

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