From 85afa0d7db862cd2658657cafb67a7257ed6f658 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Fri, 12 Dec 2025 15:19:27 +0100 Subject: [PATCH] Set about message for --help --- proxy/src/main.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/proxy/src/main.rs b/proxy/src/main.rs index 00283cd..b81cf58 100644 --- a/proxy/src/main.rs +++ b/proxy/src/main.rs @@ -9,11 +9,7 @@ use server::proxy::run_server; /// CLI arguments for configuring proxy behavior. #[derive(Parser)] -#[command( - about = "A security-focused HTTP/HTTPS proxy for Safe-chain", - version, - author -)] +#[command(about = "Aikido safe-chain proxy", version, author)] struct Args { /// TCP port binding. Use 0 for OS-assigned port (recommended for avoiding conflicts). #[arg(short, long, default_value_t = 0)]