Added the watch and scheduler systems

This commit is contained in:
Connor Johnstone
2026-03-20 16:28:15 -04:00
parent 9917ee981d
commit 8a1435d9e9
4 changed files with 88 additions and 0 deletions
+3
View File
@@ -14,6 +14,9 @@ pub struct Model {
pub top_songs: String,
/// JSON-serialized Vec of similar artist info
pub similar_artists: String,
pub monitored: bool,
#[sea_orm(nullable)]
pub last_checked_at: Option<chrono::NaiveDateTime>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]