Skip to main content

Mountain/RPC/Commands/
CommandService.rs

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