1#![warn(clippy::all, rust_2018_idioms)]
6#![forbid(unsafe_code)]
7
8#[macro_use]
9extern crate serde;
10#[macro_use]
11extern crate serde_repr;
12
13#[cfg(feature = "commands")]
15pub use reqwest;
16
17#[cfg(feature = "commands")]
18pub use client::Client;
19
20pub mod certification;
21pub mod changes;
22#[cfg(feature = "commands")]
23pub mod client;
24pub mod collection;
25pub mod company;
26pub mod error;
27pub mod genre;
28pub mod movie;
29pub mod people;
30#[cfg(feature = "commands")]
31pub mod prelude;
32pub mod tvshow;
33pub mod watch_provider;
34
35pub mod common;
36pub mod configuration;
37mod util;