1 2 3 4 5 6 7 8 9
//! # commands //! //! A central location for command interfaces pub use i_command::ICommand; pub use i_command_handler::ICommandHandler; mod i_command; mod i_command_handler;