fletch-orm-macros 1.0.0

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

#[derive(Entity)]
enum Color {
    Red,
    Green,
    Blue,
}

fn main() {}