1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! An unofficial crate to query publicly accessible API methods for Dresden's public transport system.
//!
//! Currently the endpoints are supported:
//!
//! ## Station
//! `http://widgets.vvo-online.de/abfahrtsmonitor/Haltestelle.do`
//!

mod common;
mod time;
pub mod error;

pub mod easy;

pub mod find;
pub mod monitor;
#[doc(hidden)]
pub mod trip;

pub use crate::time::DvbTime;
pub use crate::common::Mot;
pub use crate::error::Result;