kithara_queue/lib.rs
1//! AVQueuePlayer-analogue orchestration layer on top of `kithara-play`.
2//!
3//! See `README.md` for the public API contract and migration notes.
4
5mod config;
6mod error;
7mod loader;
8mod navigation;
9mod queue;
10mod track;
11
12pub use config::QueueConfig;
13pub use error::QueueError;
14pub use kithara_events::{QueueEvent, TrackId, TrackStatus};
15pub use navigation::{NavigationState, RepeatMode};
16pub use queue::{Queue, Transition};
17pub use track::{TrackEntry, TrackSource};