feat: initial serde parser working with custom structs

This commit is contained in:
0xalivecow 2024-10-19 20:47:50 +02:00
parent ba3975e7fd
commit 713994d848
No known key found for this signature in database
3 changed files with 81 additions and 9 deletions

View file

@ -1 +1,14 @@
use crate::utils::parse::Testcases;
mod tasks01;
pub fn task_distrubute(testcases: Testcases) {
for testcase in testcases.testcases {
//match testcase {}
todo!();
}
}
pub fn task_deploy() {
todo!();
}