Formatting

This commit is contained in:
Connor Johnstone
2026-03-18 15:37:10 -04:00
parent 1f36374394
commit 93392db27c
8 changed files with 250 additions and 161 deletions

View File

@@ -1,5 +1,5 @@
use actix_cors::Cors;
use actix_web::{web, App, HttpServer};
use actix_web::{App, HttpServer, web};
use clap::Parser;
use tracing_actix_web::TracingLogger;
use tracing_subscriber::EnvFilter;
@@ -64,7 +64,7 @@ async fn main() -> anyhow::Result<()> {
mb_client,
search,
config: std::sync::Arc::new(tokio::sync::RwLock::new(config)),
config_path: config_path,
config_path,
tasks: TaskManager::new(),
});