rush_sync_server/commands/
mod.rs

1// =====================================================
2// FILE: commands/mod.rs - CLEAN VERSION OHNE UNNÖTIGE PLUGINS
3// =====================================================
4
5pub mod cleanup;
6pub mod clear;
7pub mod command;
8pub mod create;
9pub mod exit;
10pub mod handler;
11pub mod history;
12pub mod lang;
13pub mod list;
14pub mod log_level;
15pub mod registry;
16pub mod restart;
17pub mod start;
18pub mod stop;
19pub mod theme;
20pub mod version;
21
22// ✅ CLEAN EXPORTS - Nur was wirklich gebraucht wird
23pub use command::Command;
24pub use handler::CommandHandler;
25pub use registry::CommandRegistry;
26
27// Commands alphabetisch sortiert
28pub use cleanup::CleanupCommand;
29pub use create::CreateCommand;
30pub use list::ListCommand;
31pub use start::StartCommand;
32pub use stop::StopCommand;