feat: implement first task as file
This commit is contained in:
parent
27acd0a531
commit
64fe182fc3
9 changed files with 70 additions and 19 deletions
|
|
@ -1,4 +1,5 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
use serde_json::Value;
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
pub struct Testcases {
|
||||
|
|
@ -9,12 +10,5 @@ pub struct Testcases {
|
|||
pub struct Testcase {
|
||||
uuid: String,
|
||||
action: String,
|
||||
arguments: Vec<Argument>,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
pub struct Argument {
|
||||
uuid: String,
|
||||
action: String,
|
||||
arguments: Vec<Argument>,
|
||||
}
|
||||
arguments: Value,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue