Fix domain cli arg

This commit is contained in:
NGnius (Graham) 2024-05-10 22:45:52 -04:00
parent a5d2a4615a
commit 6d68f76482

View file

@ -148,7 +148,7 @@ pub struct ProxyArgs {
/// Proxy preview image urls
#[arg(name = "images", short, long)]
pub intercept_images: bool,
#[arg(name = "domain", default_value_t = {"http://localhost:22252".into()})]
#[arg(name = "domain", short, long, default_value_t = {"http://localhost:22252".into()})]
pub domain_root: String,
}