Files
thoth/src/bin/main.rs
Dylan Knutson c8cc36f3d6
Some checks failed
CI / Run Clippy (push) Failing after 4s
CI / Check Style (push) Successful in 14s
CI / Run Tests (push) Failing after 19s
Initialize loco app
2024-11-30 13:29:56 -08:00

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
}