Fixed build issues

This commit is contained in:
kdeng00
2024-04-07 22:41:46 -04:00
parent 0e76c6d4c7
commit 2377178492
19 changed files with 89 additions and 62 deletions
+5 -3
View File
@@ -1,11 +1,13 @@
use serde::{Deserialize, Serialize};
mod models {
use crate::models;
// mod models {
#[derive(Debug, Deserialize, Serialize)]
pub struct IcarusAction {
pub action: String,
pub flags: Vec<models::Flags>,
pub flags: Vec<models::flags::Flags>,
}
impl IcarusAction {
@@ -18,4 +20,4 @@ impl IcarusAction {
pub fn print_action_and_flags(&self) {
}
}
}
// }