player-scope 0.1.0

A Ratatui demo shell for an audio player, focused on command flow and terminal UI layout.
Documentation
1
2
3
4
5
6
7
8
//! Library surface for `player-scope`.
//!
//! The library exposes the command parser, dispatch trait, and Ratatui UI
//! runner so playback, playlist, recording, and editor behavior can be wired
//! behind the UI without coupling backend logic to drawing.

pub mod control;
pub mod ui;