removed unnecessary use
statements
This commit is contained in:
parent
98393b9bf6
commit
7ad2ed8ff1
2 changed files with 2 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
|||
use std::sync::Arc;
|
||||
|
||||
use axum::Router;
|
||||
use tokio::{net::TcpListener, task::JoinHandle};
|
||||
|
||||
use crate::{state::{State, ApiState}, config::ApiConfig};
|
||||
use crate::{state::ApiState, config::ApiConfig};
|
||||
|
||||
mod v0;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ use comm::{CommHandle, Peer};
|
|||
use config::Config;
|
||||
use i2p::net::I2pSocketAddr;
|
||||
use serde::{Serialize, Deserialize};
|
||||
use state::{State, types::{ElementContent, ElementId, MessageId, PeerId}, CommState, ApiState};
|
||||
use state::{State, types::{MessageId, PeerId}, CommState, ApiState};
|
||||
|
||||
mod api;
|
||||
pub mod comm;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue