Welcome menu

This commit is contained in:
Simon Gardling
2022-04-04 10:56:20 -04:00
parent ae154195b5
commit 516150f9c5
3 changed files with 28 additions and 17 deletions

View File

@@ -194,6 +194,7 @@ pub struct JsonFileOutput {
pub help_function: String,
pub help_other: String,
pub license_info: String,
pub welcome_text: String,
}
/// Helps parsing text data from `text.json`
@@ -232,6 +233,7 @@ impl SerdeValueHelper {
help_function: self.parse_multiline("help_function"),
help_other: self.parse_multiline("help_other"),
license_info: self.parse_singleline("license_info"),
welcome_text: self.parse_multiline("welcome"),
}
}
}