fix: remove duplicate and unused imports in server.rs

Co-authored-by: aider (openai/andrew/openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-10 21:40:20 -03:00
parent 7b9d127ff0
commit 08f3c3e9e5

View File

@@ -6,7 +6,6 @@ use axum::{
routing::get, routing::get,
Router, Router,
}; };
use axum::extract::connect_info::ConnectInfo as AxumConnectInfo;
use clap::Command; use clap::Command;
use log::{debug, info, warn}; use log::{debug, info, warn};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
@@ -20,7 +19,6 @@ use tokio::sync::Mutex;
use tower_http::cors::CorsLayer; use tower_http::cors::CorsLayer;
use tower::ServiceBuilder; use tower::ServiceBuilder;
use tower_http::trace::TraceLayer; use tower_http::trace::TraceLayer;
use std::net::SocketAddr;
use crate::db; use crate::db;
use crate::Args; use crate::Args;