init commit

This commit is contained in:
Nicholas Orlowsky 2025-07-06 20:49:07 -04:00
parent d4b364716f
commit 4466021f07
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
18 changed files with 4734 additions and 2 deletions

View file

@ -0,0 +1,12 @@
use super::route::CardinalDirection;
#[derive(Debug, Clone)]
pub struct StopSchedule {
pub route_id: String,
pub trip_id: String,
pub service_id: String,
pub direction: CardinalDirection,
pub arrival_time: i64,
pub stop_id: i64,
pub stop_sequence: i64
}