Normalize imports
This commit is contained in:
parent
b2903f5d55
commit
643da74bcc
1 changed files with 3 additions and 4 deletions
|
|
@ -17,13 +17,12 @@ use tokio::sync::mpsc;
|
||||||
use tokio::{select, task, time};
|
use tokio::{select, task, time};
|
||||||
use tokio_tungstenite::{tungstenite, MaybeTlsStream, WebSocketStream};
|
use tokio_tungstenite::{tungstenite, MaybeTlsStream, WebSocketStream};
|
||||||
|
|
||||||
use crate::replies::{self, PendingReply, Replies};
|
use crate::api::packet::{Command, Packet, ParsedPacket};
|
||||||
|
use crate::api::{
|
||||||
use super::api::packet::{Command, Packet, ParsedPacket};
|
|
||||||
use super::api::{
|
|
||||||
BounceEvent, Data, HelloEvent, PersonalAccountView, Ping, PingReply, SessionView,
|
BounceEvent, Data, HelloEvent, PersonalAccountView, Ping, PingReply, SessionView,
|
||||||
SnapshotEvent, Time, UserId,
|
SnapshotEvent, Time, UserId,
|
||||||
};
|
};
|
||||||
|
use crate::replies::{self, PendingReply, Replies};
|
||||||
|
|
||||||
pub type WsStream = WebSocketStream<MaybeTlsStream<TcpStream>>;
|
pub type WsStream = WebSocketStream<MaybeTlsStream<TcpStream>>;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue