implement daemon mode argument option

This commit is contained in:
postscriptum 2025-07-03 12:53:59 +03:00
parent 77d0650aef
commit 1e3043d683
4 changed files with 58 additions and 21 deletions

View file

@ -48,4 +48,8 @@ pub struct Config {
/// Keep Nex entry on Snac post was removed
#[arg(short, long, default_value_t = false)]
pub keep: bool,
/// Disables some debug output
#[arg(short, long, default_value_t = false)]
pub daemon: bool,
}