housekeeping(server): clean too-broad visibility markers and organize imports

This commit is contained in:
Skipper
2026-04-18 13:29:45 +02:00
parent bf63279f73
commit 6b572d0c86
72 changed files with 507 additions and 549 deletions

View File

@@ -1,5 +1,7 @@
use tokio::sync::mpsc;
use crate::{
grpc::request_tracker::RequestTracker,
peers::user_agent::{OutOfBand, UserAgentConnection, UserAgentSession},
};
use arbiter_proto::{
proto::user_agent::{
UserAgentRequest, UserAgentResponse,
@@ -8,16 +10,13 @@ use arbiter_proto::{
},
transport::{Error as TransportError, Receiver, Sender, grpc::GrpcBi},
};
use async_trait::async_trait;
use kameo::actor::ActorRef;
use tokio::sync::mpsc;
use tonic::Status;
use tracing::{error, info, warn};
use crate::{
grpc::request_tracker::RequestTracker,
peers::user_agent::{OutOfBand, UserAgentConnection, UserAgentSession},
};
mod auth;
mod evm;
mod inbound;
@@ -144,4 +143,3 @@ pub async fn start(
dispatch_loop(bi, actor.clone(), oob_receiver, request_tracker).await;
actor.kill();
}