build fix

This commit is contained in:
maddalax 2024-10-04 11:21:15 -05:00
parent a7e1311ad5
commit 805e5729e1

View file

@ -29,6 +29,10 @@ type RequestContext struct {
kv map[string]interface{}
}
func (c *RequestContext) FormValue(key string) string {
return c.Request.FormValue(key)
}
func (c *RequestContext) QueryParam(key string) string {
return c.Request.URL.Query().Get(key)
}