Private
Public Access
1
0

Fix clippy warnings: remove unused imports/variables/functions, derive Default, fix comparisons

This commit is contained in:
2026-04-12 15:23:02 +00:00
parent 0ba2dc2310
commit 4e6848020d
36 changed files with 588 additions and 66 deletions

View File

@ -2,11 +2,10 @@
//!
//! Aggregates all endpoint routes and configures the Actix-web application.
use actix_web::{http::Method, web, HttpResponse};
use actix_web::{web, HttpResponse};
use tracing::info;
use crate::jobs::manager::JobManager;
use crate::packages::create_backend;
use super::handlers::{jobs, packages, patches, system, websocket};