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