Skip to main content

Mountain/RPC/Commands/
CommandValidation.rs

1
2//! Command-input validation hook. Currently a placeholder.
3
4pub struct Struct;
5
6impl Struct {
7	pub fn new() -> Self { Self {} }
8}
9
10impl Default for Struct {
11	fn default() -> Self { Self::new() }
12}