chore: add debug flag + housekeeping

This commit is contained in:
atagen 2025-06-23 12:49:34 +10:00
parent 18d349c11f
commit 67e77c122f
4 changed files with 29 additions and 12 deletions

View file

@ -31,8 +31,17 @@ pub struct TagState {
pub urgent: bool,
}
#[derive(Default, Deserialize)]
#[derive(Deserialize)]
pub struct Config {
pub prepopulate: u8,
pub strict: bool,
}
impl Default for Config {
fn default() -> Self {
Self {
prepopulate: 3,
strict: true,
}
}
}