make tags optional in shows.yaml

This commit is contained in:
xenofem 2023-07-01 23:23:30 -04:00
parent 363838e466
commit 31e1b6302a
2 changed files with 4 additions and 6 deletions

View file

@ -8,6 +8,7 @@ mod enumeration;
#[derive(Deserialize)]
pub struct Show {
pub path: PathBuf,
#[serde(default)]
pub tags: Vec<String>,
}