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