9 lines
162 B
Rust
9 lines
162 B
Rust
use loco_rs::cli;
|
|
use migration::Migrator;
|
|
use thoth::app::App;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> loco_rs::Result<()> {
|
|
cli::main::<App, Migrator>().await
|
|
}
|