Skip to main content

flix_tmdb/
lib.rs

1//! flix-tmdb provides clients and models for fetching data from TMDB
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5pub mod api;
6pub mod model;
7
8mod cache;
9pub use cache::{Cache, CachePolicy, RedbCache};
10
11mod client;
12pub use client::Client;
13
14mod config;
15pub use config::Config;