From b80d3226500fba8bafff1c8e8d3ec70daf73b207 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Wed, 20 Aug 2025 11:29:22 -0700 Subject: [PATCH] cargo fmt --- socktop_agent/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/socktop_agent/src/main.rs b/socktop_agent/src/main.rs index e503b5c..f9a1261 100644 --- a/socktop_agent/src/main.rs +++ b/socktop_agent/src/main.rs @@ -48,7 +48,9 @@ async fn main() -> anyhow::Result<()> { let _h_disks = spawn_disks_sampler(state.clone(), std::time::Duration::from_secs(5)); // Web app: route /ws to the websocket handler - async fn healthz() -> StatusCode { StatusCode::OK } + async fn healthz() -> StatusCode { + StatusCode::OK + } let app = Router::new() .route("/ws", get(ws::ws_handler)) .route("/healthz", get(healthz))