···718718///
719719pub const set_header = response.set_header
720720721721+/// Parse the query parameters of a request into a list of key-value pairs. The
722722+/// `key_find` function in the `gleam/list` stdlib module may be useful for
723723+/// finding values in the list.
724724+///
725725+/// Query parameter names do not have to be unique and so may appear multiple
726726+/// times in the list.
727727+///
728728+pub fn get_query(request: Request) -> List(#(String, String)) {
729729+ request.get_query(request)
730730+ |> result.unwrap([])
731731+}
732732+721733/// This function overrides an incoming POST request with a method given in
722734/// the request's `_method` query paramerter. This is useful as web browsers
723735/// typically only support GET and POST requests, but our application may