Added modules

This commit is contained in:
kdeng00
2024-04-07 21:59:59 -04:00
parent 0b4785681e
commit 0e76c6d4c7
13 changed files with 55 additions and 17 deletions
+4 -1
View File
@@ -1,7 +1,9 @@
use serde::{Deserialize, Serialize};
mod managers {
#[derive(Debug, Deserialize, Serialize)]
struct ActionManager {
pub struct ActionManager {
action: String,
flags: Vec<models::Flags>,
params: Vec<String>,
@@ -50,3 +52,4 @@ impl ActionManager {
return Vec::new();
}
}
}