diff --git a/src/bin/psq-client.rs b/src/bin/psq-client.rs index 07a57e5..ce5ee62 100644 --- a/src/bin/psq-client.rs +++ b/src/bin/psq-client.rs @@ -63,10 +63,6 @@ async fn main() { #[derive(Parser, Debug)] #[command(version, about, long_about = None)] pub struct Args { - /// Configuration file to read. - #[arg(short, long, default_value = "config.json")] - config: String, - /// URL to connect. #[arg(short, long)] dest: String, @@ -91,10 +87,6 @@ impl Args { args } - pub fn config(&self) -> &String { - &self.config - } - pub fn dest(&self) -> &String { &self.dest }