1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#![doc = include_str!("../README.md")] pub use self::client::Client; pub use self::request::RequestBuilder; pub mod client; pub mod models; pub mod request; // TODO: // - error handling // - rate limiter // - health method // - ping method // - CI // - deserialize enum // // FIX: // - mandatory what parameter for search