1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Library to access [Untis](https://www.untis.at)
//! 
//! The core of this crate is the `Untis` struct.

extern crate chrono;
extern crate reqwest;
extern crate serde;
extern crate serde_json;

#[macro_use]
extern crate serde_derive;

mod error;
mod request;
mod response;
mod untis;
mod date;
mod time;

pub use error::Error;
pub use request::*;
pub use response::*;
pub use untis::Units;
pub use date::UntisDate;
pub use time::UntisTime;