//! Generated by `empu make:controller {{ name }}`.
//!
//! Wire handlers into your `Router` (e.g. `Router::new().route("/", get(index))`).
use axum::response::IntoResponse;
pub async fn index() -> impl IntoResponse {
"{{ name }} controller — replace with real handler"
}