diff options
author | notgne2 | 2020-10-13 18:27:27 -0700 |
---|---|---|
committer | notgne2 | 2020-10-13 18:27:27 -0700 |
commit | 3bd43f92e6c59f65b6120886c4ee75b6a9391522 (patch) | |
tree | 9ec3fc0abc23f289f2af9d3acee85c02d40a9373 /src/utils/data.rs | |
parent | b2326d8694465718024e63c691fe9920c416489e (diff) |
Auto rollback if deployment is not confirmed
Diffstat (limited to '')
-rw-r--r-- | src/utils/data.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/data.rs b/src/utils/data.rs index f72f9a7..351b9ae 100644 --- a/src/utils/data.rs +++ b/src/utils/data.rs @@ -44,6 +44,10 @@ pub struct ProfileSettings { pub bootstrap: Option<String>, #[serde(rename(deserialize = "profilePath"))] pub profile_path: Option<String>, + #[serde(rename(deserialize = "maxTime"))] + pub max_time: Option<u16>, + #[serde(rename(deserialize = "tempPath"))] + pub temp_path: Option<String>, } #[derive(Deserialize, Debug, Clone)] |