aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/main.rs b/server/src/main.rs
index dae6662..57e12f6 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -1,13 +1,12 @@
pub mod protocol;
pub mod room;
-use hyper::{header, StatusCode, Uri};
+use hyper::{header, StatusCode};
use listenfd::ListenFd;
use log::error;
use room::Room;
use std::collections::HashMap;
use std::convert::Infallible;
-use std::str::FromStr;
use std::sync::Arc;
use tokio::sync::RwLock;
use warp::hyper::Server;