fix(api): removed unused imports

This commit is contained in:
antifallobst 2024-03-22 18:40:04 +01:00
parent 6a739e2dad
commit df8010a797
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
2 changed files with 0 additions and 2 deletions

View File

@ -1,4 +1,3 @@
use crate::backend::error::Error;
use crate::backend::Backend; use crate::backend::Backend;
use actix_web::{post, web, HttpResponse, Responder}; use actix_web::{post, web, HttpResponse, Responder};
use actix_web_httpauth::extractors::bearer::BearerAuth; use actix_web_httpauth::extractors::bearer::BearerAuth;

View File

@ -1,6 +1,5 @@
pub mod invite; pub mod invite;
use crate::backend::error::Error;
use crate::backend::Backend; use crate::backend::Backend;
use actix_web::{post, web, HttpResponse, Responder}; use actix_web::{post, web, HttpResponse, Responder};
use log::error; use log::error;