codewars_api/lib.rs
1//! Full-featured crate to interact with Codewars API.
2//! Check [Codewars official documentation](https://dev.codewars.com/) for more information about API
3//!
4//! See [docs.rs](https://docs.rs/codewars-api/latest/codewars_api) and [GitHub repo](https://github.com/ankddev/codewars-api-rs) for more information about this crate
5
6// Warn if something is not documented
7#![warn(missing_docs)]
8
9pub mod rest_api;
10
11// Re-exports
12pub use crate::rest_api::client::RestCodewarsClient;
13pub use crate::rest_api::models::AuthoredChallenges;
14pub use crate::rest_api::models::CodeChallenge;
15pub use crate::rest_api::models::CompletedChallenges;
16pub use crate::rest_api::models::User;