1#![cfg_attr(
14 feature = "client",
15 doc = "
16```rust,no_run
17fn main() {
18 let string = \"Hello this grammarly world!\";
19 let mut r = grammarly::Request::from(string);
20 // With an API key:
21 println!(\"Response: {:#?}\", r.api_key(\"99999999\").send());
22 // Without an API key:
23 println!(\"Response: {:#?}\", r.send());
24}
25```"
26)]
27#![deny(missing_docs)]
28#![deny(warnings)]
29
30#[cfg(feature = "client")]
31pub mod client;
33pub mod request;
35pub mod response;
37
38pub use request::{HttpRequest, Request};
39pub use response::Response;