migratour 0.1.1

A very simple database migration tool
Documentation
1
2
3
4
5
6
7
8
9
10
use std::error::Error;

use migratour::cmd_run;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    cmd_run().await?;

    Ok(())
}