sql-gen 0.2.3

A CLI tool for generating models based on a SQL Database using SQLx
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod helpers;
pub mod struct_writer;

pub mod enum_writer;
#[cfg(test)]
pub mod enum_writer_test;
pub mod fs_writer;
#[cfg(test)]
pub mod fs_writer_tests;
#[cfg(test)]
mod struct_writer_test;
#[cfg(test)]
pub mod test_helpers;