implement index file option

This commit is contained in:
yggverse 2026-03-19 06:45:49 +02:00
parent 6b07499d10
commit 1828a99955
2 changed files with 15 additions and 0 deletions

View file

@ -16,4 +16,8 @@ pub struct Config {
/// * keep empty to export all
#[arg(short, long)]
pub filter_tag: Vec<String>,
/// Generate index file with given name
#[arg(short, long)]
pub index: Option<String>,
}