purwa-cli 0.2.0

Empu — Purwa CLI (Artisan-equivalent)
1
2
3
4
5
6
7
8
9
//! 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"
}