use clap::Parser; #[derive(Debug, Parser)] #[structopt(name = "relay", about = "An activitypub relay")] pub(crate) struct Args { #[arg(short, help = "A list of domains that should be blocked")] blocks: Vec, #[arg(short, help = "A list of domains that should be allowed")] allowed: Vec, #[arg(short, long, help = "Undo allowing or blocking domains")] undo: bool, } impl Args { pub(crate) fn new() -> Self { Self::parse() } pub(crate) fn blocks(&self) -> &[String] { &self.blocks } pub(crate) fn allowed(&self) -> &[String] { &self.allowed } pub(crate) fn undo(&self) -> bool { self.undo } }