From 6d68f764822223373804671e9d982978115d5e8f Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Fri, 10 May 2024 22:45:52 -0400 Subject: [PATCH] Fix domain cli arg --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 2cbb561..8b91a15 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -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, }