redux of the worker queue

This commit is contained in:
Connor Johnstone
2026-03-23 18:37:45 -04:00
parent e76b2fc575
commit d2b21789d3
8 changed files with 547 additions and 0 deletions
+4
View File
@@ -3,17 +3,21 @@ pub mod artist;
pub mod download_queue;
pub mod playlist;
pub mod playlist_track;
pub mod scheduler_state;
pub mod search_cache;
pub mod track;
pub mod user;
pub mod wanted_item;
pub mod work_queue;
pub use album::Entity as Albums;
pub use artist::Entity as Artists;
pub use download_queue::Entity as DownloadQueue;
pub use playlist::Entity as Playlists;
pub use playlist_track::Entity as PlaylistTracks;
pub use scheduler_state::Entity as SchedulerStates;
pub use search_cache::Entity as SearchCache;
pub use track::Entity as Tracks;
pub use user::Entity as Users;
pub use wanted_item::Entity as WantedItems;
pub use work_queue::Entity as WorkQueues;