zohohorrorshow/lib.rs
1//! # Zohohorrorshow
2//!
3//! A library for interacting with the Zoho Projects API, because it's an awful nightmare of ambiguous fields,
4//! optional fields, random casing and largely absent documentation. Xорошо́!
5
6#![deny(
7 unused_imports,
8 rust_2018_idioms,
9 rust_2018_compatibility,
10 unsafe_code,
11 clippy::all
12)]
13#![doc(html_root_url = "https://docs.rs/zohohorrorshow/0.7.4")]
14
15pub mod client;
16pub mod errors;
17pub mod models;
18pub mod prelude;
19pub mod request;
20
21mod oauth;
22mod serializers;