dapctl 1.0.1

TUI/CLI sync tool for HiFi Digital Audio Players
Documentation
//! dapctl — TUI/CLI sync for HiFi Digital Audio Players.
//!
//! Crate layout mirrors `docs/ARCHITECTURE.md`. Every module exposes the
//! minimum surface needed by `cli` and `tui`; the core logic (config, dap,
//! scan, diff, transfer, log) is stack-agnostic and does not depend on the
//! presentation layer.

pub mod audit;
pub mod cli;
pub mod config;
pub mod cover;
pub mod dap;
pub mod diff;
pub mod error;
pub mod export;
pub mod logging;
pub mod player;
pub mod scan;
pub mod ssh;
pub mod transcode;
pub mod transfer;
pub mod tui;