tenebrous-sheets/src/migrate.rs

7 lines
134 B
Rust
Raw Normal View History

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