sql_reverse_struct/
lib.rs

1#[macro_use]
2extern crate sql_reverse_error;
3
4pub mod common;
5pub mod gen_struct;
6pub mod mysql_struct;
7pub mod postgres_struct;
8pub mod export;
9
10#[cfg(test)]
11mod tests {
12    #[test]
13    fn it_works() {
14        let result = 2 + 2;
15        assert_eq!(result, 4);
16    }
17}