7 lines
134 B
Rust
7 lines
134 B
Rust
|
pub mod migrator;
|
||
|
|
||
|
#[rocket::main]
|
||
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||
|
crate::migrator::migrate().await
|
||
|
}
|