1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Another implementation of a client for the TMDB API
//!
//! It provides a support for async and implements each command using the Command pattern.

/// The used version of reqwest
#[cfg(feature = "commands")]
pub use reqwest;

#[cfg(feature = "commands")]
pub mod client;
pub mod company;
pub mod error;
pub mod genre;
pub mod movie;
pub mod people;
#[cfg(feature = "commands")]
pub mod prelude;
pub mod tvshow;

pub mod common;
mod util;

#[cfg(feature = "commands")]
pub use client::Client;