sqlx-model-tools 0.1.3

sqlx model cli tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod common;
mod mysql;
#[tokio::main]
async fn main() {
    let mut args = std::env::args();
    let _ = args.next();
    let config = args.next().unwrap_or_else(|| "d2c_config.toml".to_string());
    let parse = common::ConfigParse::run(config.as_str()).await;
    if let Err(err) = parse {
        println!("error:{}", err);
    }
}