purwa-cli 0.2.0

Empu — Purwa CLI (Artisan-equivalent)
1
2
3
4
5
6
7
8
9
10
//! Generated by `empu make:model` ({{ struct_name }}) — SQLx row shape.
//!
//! Adjust columns to match your migration; use `sqlx::query_as!` when ready.

use sqlx::FromRow;

#[derive(Debug, Clone, FromRow)]
pub struct {{ struct_name }} {
    pub id: i64,
}