From 1df8217bdee808c28afc92569574a3c9f491be9c Mon Sep 17 00:00:00 2001 From: afterlifepro Date: Sat, 18 Oct 2025 17:12:19 +0000 Subject: [PATCH] upload: chore: cargo fmt --- upload/src/main.rs | 10 ++++++++-- upload/src/utils.rs | 6 ++++-- 2 file(s) changed, 12 insertion(s)(+), 4 deletion(s)(-) diff --git a/upload/src/main.rs b/upload/src/main.rs --- a/upload/src/main.rs +++ b/upload/src/main.rs @@ -275,7 +275,10 @@ ) .await?; - println!("Site is now updated. Live at {}", utils::site_handle(config.user)); + println!( + "Site is now updated. Live at {}", + utils::site_handle(config.user) + ); } else { let oauth = oauth::client::OAuthClient::with_memory_store(); let session = oauth @@ -311,7 +314,10 @@ ) .await?; - println!("Site is now updated. Live at {}", utils::site_handle(config.user)); + println!( + "Site is now updated. Live at {}", + utils::site_handle(config.user) + ); }; Ok(()) diff --git a/upload/src/utils.rs b/upload/src/utils.rs --- a/upload/src/utils.rs +++ b/upload/src/utils.rs @@ -70,5 +70,7 @@ let method = user[1]; let did = user[2]; format!("https://{did}.did-{method}.atcities.dev/") - } else { format!("https://{user}.atcities.dev/") } -} \ No newline at end of file + } else { + format!("https://{user}.atcities.dev/") + } +} -- tangled.sh