From 003a8b280b3b9b4f8c5db4f2c271ef454173c684 Mon Sep 17 00:00:00 2001 From: oopsbagel Date: Tue, 24 Jun 2025 23:38:33 -0700 Subject: [PATCH] chore: cargo fmt --- installer/src/util.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/installer/src/util.rs b/installer/src/util.rs index 27a8026..68304d9 100644 --- a/installer/src/util.rs +++ b/installer/src/util.rs @@ -107,7 +107,11 @@ pub async fn send_file(admin_ip: &str, local_path: &str, remote_path: &str) -> R Ok(()) } -pub async fn http_ok_every(rayhunter_url: String, interval: Duration, max_failures: u32) -> Result<()> { +pub async fn http_ok_every( + rayhunter_url: String, + interval: Duration, + max_failures: u32, +) -> Result<()> { let client = Client::new(); let mut failures = 0; loop {