♻️ Remove unused `use` statements

main
_ 2020-11-08 02:38:27 +00:00
parent 8c7f4684b4
commit 5fa0bd8584
2 changed files with 0 additions and 12 deletions

View File

@ -1,13 +1,10 @@
use std::{ use std::{
convert::Infallible,
error::Error, error::Error,
net::SocketAddr, net::SocketAddr,
path::PathBuf, path::PathBuf,
sync::Arc, sync::Arc,
time::Duration,
}; };
use futures::FutureExt;
use hyper::{ use hyper::{
Body, Body,
Request, Request,
@ -20,13 +17,6 @@ use hyper::{
StatusCode, StatusCode,
}; };
use serde::Deserialize; use serde::Deserialize;
use tokio::{
sync::{
oneshot,
watch,
},
time::delay_for,
};
use tracing::{ use tracing::{
debug, error, info, trace, warn, debug, error, info, trace, warn,
}; };

View File

@ -9,7 +9,6 @@ use std::{
path::{Path, PathBuf}, path::{Path, PathBuf},
}; };
use futures::FutureExt;
use handlebars::Handlebars; use handlebars::Handlebars;
use tokio::{ use tokio::{
fs::{ fs::{
@ -21,7 +20,6 @@ use tokio::{
sync::mpsc::{ sync::mpsc::{
channel, channel,
}, },
sync::watch,
}; };
use tracing::{ use tracing::{
debug, error, info, trace, warn, debug, error, info, trace, warn,