You've already forked flix
13 lines
213 B
Rust
13 lines
213 B
Rust
//! flix-tmdb provides clients and models for fetching data from TMDB
|
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
|
|
pub mod api;
|
|
pub mod model;
|
|
|
|
mod client;
|
|
pub use client::Client;
|
|
|
|
mod config;
|
|
pub use config::Config;
|