Skip to main content

player_scope/
lib.rs

1//! Library surface for `player-scope`.
2//!
3//! The library exposes the command parser, dispatch trait, and Ratatui UI
4//! runner so playback, playlist, recording, and editor behavior can be wired
5//! behind the UI without coupling backend logic to drawing.
6
7pub mod control;
8pub mod ui;