stcp_scraper/lib.rs
1pub use error::Error;
2pub use schedules::{fetch_next_buses, Schedule};
3pub use destinations::{fetch_destinations, Destination};
4pub use stops::{fetch_stops, Stop};
5pub use lines::{fetch_lines, Line, Code, PubCode};
6
7mod error;
8mod response;
9
10mod destinations;
11mod schedules;
12mod stops;
13mod lines;