1 2 3 4 5 6 7 8 9 10 11
use std::sync::Arc; use axum::extract::State; use crate::Mutex; use crate::http::ServiceState; // The default /health handler for every application. pub(crate) async fn handler(State(_): State<Arc<Mutex<ServiceState>>>) -> String { String::new() }