modelite 0.3.1

Automatically generate create table and other SQLite queries for a struct
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
macro_rules! moduse {
    ($mod: ident) => {
        mod $mod;
        pub use $mod::*;
    };
    ($mod: ident, $feature: literal) => {
        #[cfg(feature = $feature)]
        mod $mod;
        pub use $mod::*;
    };
}

moduse!(model);
moduse!(query, "sqlx");
moduse!(handle);

pub use modelite_macros::*;