cargo fmt

This commit is contained in:
jasonwitty 2025-08-20 11:29:22 -07:00
parent fff386f9d5
commit b80d322650

View File

@ -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))