style: apply rustfmt to registry handlers

This commit is contained in:
2026-02-23 07:48:20 +00:00
parent 42e71b9195
commit 8336166e0e
3 changed files with 35 additions and 7 deletions

View File

@@ -110,7 +110,11 @@ async fn upload(
}
}
async fn fetch_from_proxy(client: &reqwest::Client, url: &str, timeout_secs: u64) -> Result<Vec<u8>, ()> {
async fn fetch_from_proxy(
client: &reqwest::Client,
url: &str,
timeout_secs: u64,
) -> Result<Vec<u8>, ()> {
let response = client
.get(url)
.timeout(Duration::from_secs(timeout_secs))