start refactor of ip management

This commit is contained in:
2025-12-14 21:22:07 +00:00
parent 3b5e7e1986
commit 7cabefc76e
13 changed files with 1500 additions and 777 deletions

View File

@@ -1,9 +1,9 @@
use derive_more::{Display, Error};
impl actix_web::error::ResponseError for ReturnedError{}
impl actix_web::error::ResponseError for ReturnedError {}
#[derive(Debug, Display, Error)]
#[display(fmt = "my error: {}", name)]
#[display("my error: {}", name)]
pub struct ReturnedError {
pub name: String,
}