playr 0.3.1

A minimal TUI music player that plays local files and contacts nothing
Documentation
1
2
3
4
5
6
7
8
9
//! playr: a minimal TUI music player.
//!
//! The library half (scan, database, audio, interface state) is exposed so it can be
//! tested and driven headlessly; `main.rs` adds the CLI and TUI.

pub mod audio;
pub mod db;
pub mod scan;
pub mod ui;