feat: support for 'ironvar' dynamic variables

This commit is contained in:
Jake Stanger
2023-06-22 23:07:40 +01:00
parent f5bdc5a027
commit ded50cca6f
17 changed files with 613 additions and 195 deletions

View File

@@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize};
#[serde(tag = "type")]
pub enum Response {
Ok,
OkValue { value: String },
Err { message: Option<String> },
}