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