Initial commit

This commit is contained in:
2025-05-03 15:19:56 -06:00
commit 90c7b9d654
48 changed files with 3192 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
//! flix-tmdb provides clients and models for fetching data from TMDB
/// TMDB API clients
pub mod api;
/// Deserializable types from the TMDB API
pub mod model;
mod client;
pub use client::Client;
mod config;
pub use config::Config;