allow file renaming

This commit is contained in:
2025-05-02 21:30:38 +02:00
parent 2aa309ba5c
commit fcd0198cde
3 changed files with 36 additions and 6 deletions

View File

@@ -17,6 +17,8 @@ pub struct Game<'a> {
pub bonus: Vec<&'a str>,
pub delete: Vec<&'a str>,
pub required: Vec<&'a str>,
#[serde(default)]
pub rename: Vec<(&'a str, &'a str)>,
}
impl Game<'_> {