rush_sync_server/commands/
mod.rs

1// =====================================================
2// FILE: commands/mod.rs - MODULE CLEANUP
3// =====================================================
4
5pub mod clear;
6pub mod command;
7pub mod exit;
8pub mod handler;
9pub mod history;
10pub mod lang;
11pub mod log_level; // ✅ ADDED: Missing log_level module
12pub mod performance; // ✅ ADDED: Missing performance module
13pub mod plugins; // ✅ Plugins hinzugefügt
14pub mod registry;
15pub mod restart;
16pub mod server;
17pub mod theme; // ✅ ADDED: Missing theme module
18pub mod version;
19
20// ✅ CLEAN EXPORTS (macros entfernt da sie in lib.rs sind)
21pub use command::Command;
22pub use handler::CommandHandler;
23pub use plugins::{CommandPlugin, PluginManager}; // ✅ Plugin exports
24pub use registry::CommandRegistry;
25
26// ✅ SERVER EXPORTS
27pub use server::ServerCommand;