Reformat imports properly
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m43s
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m43s
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
mod registry;
|
||||
mod tui;
|
||||
|
||||
use registry::RegistryEntry;
|
||||
use std::sync::Arc;
|
||||
use tracing::trace;
|
||||
|
||||
use russh::server::Handle;
|
||||
use tokio::sync::{RwLock, RwLockReadGuard};
|
||||
|
||||
pub use registry::Registry;
|
||||
use registry::RegistryEntry;
|
||||
use russh::server::Handle;
|
||||
use tokio::sync::{RwLock, RwLockReadGuard};
|
||||
use tracing::trace;
|
||||
|
||||
use crate::io::{Stats, TrackStats};
|
||||
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
use std::{
|
||||
collections::{HashMap, hash_map::Entry},
|
||||
sync::Arc,
|
||||
};
|
||||
use std::collections::HashMap;
|
||||
use std::collections::hash_map::Entry;
|
||||
use std::sync::Arc;
|
||||
|
||||
use tokio::sync::RwLock;
|
||||
use tracing::trace;
|
||||
|
||||
use crate::{helper::get_animal_name, tunnel::Tunnel};
|
||||
|
||||
use super::TunnelInner;
|
||||
use crate::helper::get_animal_name;
|
||||
use crate::tunnel::Tunnel;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct RegistryEntry {
|
||||
|
||||
Reference in New Issue
Block a user