Throw away flix files in favor of a flix database

This commit is contained in:
2025-09-18 22:41:34 -06:00
parent ba9c3fa03d
commit 06110b91a1
117 changed files with 8645 additions and 1054 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
use super::{CollectionId, MovieId};
use super::id::{CollectionId, MovieId};
/// A deserialized Collection from the TMDB API
#[derive(Debug, Clone, serde::Deserialize)]
@@ -20,4 +20,6 @@ pub struct Collection {
pub struct Item {
/// The movie's TMDB ID
pub id: MovieId,
/// The movie's title
pub title: String,
}