fej/src/ivago/controller.rs

10 lines
241 B
Rust
Raw Normal View History

/// Searches the Ivago API for streets in the given city
///
/// # Arguments
///
/// * `street` -name of the street
/// * `city` - city the street is in
pub fn search_streets(street: String, city: String) -> Vec<String> {
Vec::new()
}