//! CLI command modules
// New 6-command CLI interface
pub mod setup;
pub mod network;
pub mod usage;
pub mod mod_provider;
// Keep existing upload/download logic but make them internal
pub(crate) mod upload;
pub(crate) mod download;
pub mod download_interactive;
// Old commands (kept for backend compatibility, not exposed in new CLI)
pub(crate) mod node;
pub(crate) mod chunk;
pub(crate) mod demo;
pub(crate) mod friend;
pub(crate) mod health;
pub(crate) mod info;
pub(crate) mod init;
pub(crate) mod list;
pub(crate) mod message;
pub(crate) mod peers;
pub(crate) mod quota;
pub(crate) mod status;
pub(crate) mod storage;