8 lines
129 B
Rust
8 lines
129 B
Rust
use migration::Migrator;
|
|
use sea_schema::migration::*;
|
|
|
|
#[async_std::main]
|
|
async fn main() {
|
|
cli::run_cli(Migrator).await;
|
|
}
|