Skip to main content

Mountain/RPC/
Commands.rs

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