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