From ea723d87f2a5f1107e64640728d85837b378741f Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 27 Aug 2025 16:18:31 -0400 Subject: [PATCH] Code formatting --- src/parsers/api_parser.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/parsers/api_parser.rs b/src/parsers/api_parser.rs index 2ac7af8..230df46 100644 --- a/src/parsers/api_parser.rs +++ b/src/parsers/api_parser.rs @@ -17,7 +17,7 @@ impl APIParser { pub fn retrieve_api(&self, api_type: APIType) -> models::api::Api { match api_type { APIType::Main => self.apis[0].clone(), - APIType::Auth => self.apis[1].clone() + APIType::Auth => self.apis[1].clone(), } } @@ -39,7 +39,7 @@ impl APIParser { } break; } - }, + } APIType::Auth => { if arg == "-ha" { if value.chars().nth(value.len() - 1) == Some('/') { @@ -51,7 +51,6 @@ impl APIParser { } } } - } // for api in self.apis {