Change to use json for config

cleanup unused codes
This commit is contained in:
2025-10-17 16:29:36 +08:00
parent 71122e87ae
commit fea4e8d35e
13 changed files with 42 additions and 117 deletions

View File

@@ -6,7 +6,7 @@ mod crawler;
mod event;
mod helpers;
mod schema;
mod types;
mod models;
mod widgets;
use crate::cli::Cli;
@@ -19,4 +19,4 @@ async fn main() -> Result<()> {
color_eyre::install()?;
let cli = Cli::parse();
cli.run().await
}
}