1//! Command-registration RPC service. Three sub-files: `CommandService` (the 2//! impl handle), `CommandValidation` (input checks), `Command` (the DTO). 3 4pub mod Command; 5 6pub mod CommandService; 7 8pub mod CommandValidation;