codewars-api 1.0.0

A library for interacting with the Codewars API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Full-featured crate to interact with Codewars API.
//! Check [Codewars official documentation](https://dev.codewars.com/) for more information about API
//!
//! 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

// Warn if something is not documented
#![warn(missing_docs)]

pub mod rest_api;

// Re-exports
pub use crate::rest_api::client::RestCodewarsClient;
pub use crate::rest_api::models::AuthoredChallenges;
pub use crate::rest_api::models::CodeChallenge;
pub use crate::rest_api::models::CompletedChallenges;
pub use crate::rest_api::models::User;