1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! # libvplan - *indiware* timetable changes client and parser //! //! A client and parser for *indiware* timetable changes. //! #[cfg(feature = "client")] /// The client to fetch a vplan. pub mod client; mod document; /// Errors... pub mod error; /// Parser for dates. pub mod parser; /// The document. pub mod vplan; #[cfg(feature = "client")] pub use crate::client::Client; pub use crate::vplan::*;