Skip to main content

dapctl/
lib.rs

1//! dapctl — TUI/CLI sync for HiFi Digital Audio Players.
2//!
3//! Crate layout mirrors `docs/ARCHITECTURE.md`. Every module exposes the
4//! minimum surface needed by `cli` and `tui`; the core logic (config, dap,
5//! scan, diff, transfer, log) is stack-agnostic and does not depend on the
6//! presentation layer.
7
8pub mod audit;
9pub mod cli;
10pub mod config;
11pub mod cover;
12pub mod dap;
13pub mod diff;
14pub mod error;
15pub mod export;
16pub mod logging;
17pub mod player;
18pub mod scan;
19pub mod ssh;
20pub mod transcode;
21pub mod transfer;
22pub mod tui;