Skip to main content

cadmium_yellow/
lib.rs

1mod client;
2mod error;
3mod types;
4
5pub use self::{
6    client::{Client, DataSource},
7    error::{Error, Result},
8    types::{Line, LineName, Platform, Station, Train, TrainArrival, TrainEvent, TrainEventKind},
9};