swordmaster-cli 0.1.0

CLI tool to scaffold projects using the Swordmaster framework
1
2
3
4
5
6
7
8
9
use chrono::{DateTime, Utc};

#[derive(Debug, Clone)]
pub struct User {
    pub id: i64,
    pub created_at: DateTime<Utc>,
    pub name: String,
    pub email: String,
}