From d9195ef0af6eec601958318b310d3cb7f1a9e99a Mon Sep 17 00:00:00 2001 From: Mo8it Date: Sat, 25 Feb 2023 21:32:20 +0100 Subject: [PATCH] Remove unused imports --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index c30e1da..76129b7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,11 +10,10 @@ mod templates; use anyhow::{Context, Result}; use axum::{ - http::StatusCode, routing::{get, get_service, Router}, Server, }; -use std::{future::ready, net::SocketAddr, process}; +use std::{net::SocketAddr, process}; use tower_http::services::ServeDir; use tracing::{error, info};