[#19] Small changes
This commit is contained in:
parent
552cf4bf7b
commit
3b5f1e9cf7
2 changed files with 5 additions and 4 deletions
|
|
@ -15,9 +15,9 @@ pub fn routes() -> Vec<rocket::Route> {
|
|||
/// # Arguments
|
||||
///
|
||||
/// * `search_term` - Search term to use to look for streets
|
||||
#[get("/search?<search_term>")]
|
||||
pub fn route_search_streets(search_term: String) -> Result<Json<Vec<Street>>, Status> {
|
||||
Ok(Json(search_streets(search_term.as_str())?))
|
||||
#[get("/search?<q>")]
|
||||
pub fn route_search_streets(q: String) -> Result<Json<Vec<Street>>, Status> {
|
||||
Ok(Json(search_streets(q.as_str())?))
|
||||
}
|
||||
|
||||
/// Handles returning of pickup times for a specific address. It returns a list
|
||||
|
|
|
|||
Reference in a new issue