Refactor: Extract the quirks_path package as a standalone module and replace eyre with color-eyre.

This commit is contained in:
2025-01-05 23:51:31 +08:00
parent 40cbf86f0f
commit 2ed2b864b2
28 changed files with 231 additions and 2117 deletions

View File

@@ -2,7 +2,8 @@ use loco_rs::cli;
use recorder::{app::App, migrations::Migrator};
#[tokio::main]
async fn main() -> eyre::Result<()> {
async fn main() -> color_eyre::eyre::Result<()> {
color_eyre::install()?;
cli::main::<App, Migrator>().await?;
Ok(())
}