Reformat imports properly
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m43s

This commit is contained in:
2025-04-16 03:00:07 +02:00
parent 19ec3714a6
commit e21c9fd428
14 changed files with 78 additions and 77 deletions

View File

@@ -1,23 +1,22 @@
mod auth;
mod response;
use crate::tunnel::Registry;
use std::{ops::Deref, pin::Pin};
use std::ops::Deref;
use std::pin::Pin;
use bytes::Bytes;
use http_body_util::{BodyExt as _, Empty, combinators::BoxBody};
use hyper::{
Request, Response, StatusCode,
body::Incoming,
client::conn::http1::Builder,
header::{self, HOST},
};
use tracing::{debug, error, trace, warn};
use crate::tunnel::TunnelAccess;
use auth::AuthStatus;
pub use auth::ForwardAuth;
use bytes::Bytes;
use http_body_util::combinators::BoxBody;
use http_body_util::{BodyExt as _, Empty};
use hyper::body::Incoming;
use hyper::client::conn::http1::Builder;
use hyper::header::{self, HOST};
use hyper::{Request, Response, StatusCode};
use response::response;
use tracing::{debug, error, trace, warn};
use crate::tunnel::{Registry, TunnelAccess};
#[derive(Debug, Clone)]
pub struct Service {