remove an unused import

This commit is contained in:
blek 2023-12-13 20:15:14 +10:00
parent d27eb2dfed
commit 36bda05825
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ use std::net::IpAddr;
use warp::{reply::{Reply, json, with_status}, reject::Rejection, Filter, http::StatusCode};
use warp_real_ip::real_ip;
use crate::web::{state::SharedState, rejection::HttpReject, api::types::{ErrorMessage, Error}};
use crate::web::{state::SharedState, api::types::{ErrorMessage, Error}};
use super::{check_api_enabled, function_disabled_err};