1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#![doc = include_str!("../README.md")] pub mod api; mod auth; pub mod client; pub mod error; static APP_USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),); // TODO: tests #[cfg(test)] mod tests { // #[test] // fn it_works() { // let result = add(2, 2); // assert_eq!(result, 4); // } }