Mountain/RPC/Commands/CommandService.rs
1
2//! Command registration and execution service.
3
4use std::collections::HashMap;
5
6pub struct Struct {
7 #[allow(dead_code)]
8 commands:HashMap<String, String>,
9}
10
11impl Struct {
12 pub fn new() -> Self { Self { commands:HashMap::new() } }
13}
14
15impl Default for Struct {
16 fn default() -> Self { Self::new() }
17}