1#![doc = include_str!("../readme.md")]
2#![warn(clippy::all, rust_2018_idioms)]
3#![forbid(unsafe_code)]
4
5#[macro_use]
6extern crate serde;
7#[macro_use]
8extern crate serde_repr;
9
10pub use chrono;
12pub use client::Client;
13pub use reqwest;
15
16pub mod certification;
17pub mod changes;
18
19pub mod client;
20pub mod collection;
21pub mod company;
22pub mod error;
23pub mod genre;
24pub mod movie;
25pub mod people;
26pub mod tvshow;
27pub mod watch_provider;
28
29pub mod common;
30pub mod configuration;
31mod util;
32
33pub type Result<V> = std::result::Result<V, crate::error::Error>;