Fixed airport responses

This commit is contained in:
2023-12-01 17:30:29 -05:00
parent 1feb713a47
commit 91d8e6c910
7 changed files with 68 additions and 23 deletions

View File

@@ -22,7 +22,7 @@ pub struct Airport {
pub iata_code: String,
pub local_code: String,
pub point: Point,
pub tower: Option<bool>,
pub has_tower: Option<bool>,
}
impl Into<QueryAirport> for Airport {