fletch-orm-macros 1.0.0

Procedural macros for the Fletch ORM database toolkit
Documentation
1
2
3
4
5
6
7
8
9
use fletch_orm_macros::Entity;

#[derive(Entity)]
struct User {
    name: String,
    email: String,
}

fn main() {}