sprattus-derive 0.0.1

The derive macros for a async orm for Postgres
1
2
3
4
5
6
7
use proc_macro2::{Ident, Literal};

#[derive(Debug)]
pub(crate) struct SqlField {
    pub rust_name: Ident,
    pub sql_name: Literal,
}