dbubel

Results 1 comments of dbubel

You should be able to get the query params like this off your request `r`. ```go min := r.URL.Query().Get("min") max := r.URL.Query().Get("max") ``` I think what you are asking about...