refactor: remove unused imports

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-04-30 20:37:15 +02:00
parent 1be3a4fa6c
commit 5327aff217
3 changed files with 4 additions and 12 deletions

View File

@@ -3,7 +3,7 @@ use std::{net::SocketAddr, sync::Arc};
use axum::{extract::MatchedPath, http::Request, routing::get, Router};
use tower_http::trace::TraceLayer;
use crate::state::{self, SharedState, State};
use crate::state::{SharedState, State};
async fn root() -> &'static str {
"Hello, hyperlog!"