🗑️ Remove unused imports, macros and fields

- Drop unnecessary `axum::extract::{Path(State)}` imports in config.rs and registry.rs
- Mark unused field `_position_sec` with `#[allow(dead_code)]`
- Add missing attribute to dead code struct
- Remove unused macros `add_action_arg!`, etc. and related types (`PlayerReport`)
This commit is contained in:
2026-04-05 11:36:22 +02:00
parent d5b1ed5635
commit 6b0bfe86e3
5 changed files with 3 additions and 46 deletions

View File

@@ -9,7 +9,6 @@ use async_trait::async_trait;
#[cfg(feature = "pmoserver")]
use axum::{
Router,
extract::{Path, State},
routing::{delete, get, post},
};