From 2bd09256767026a0dab2b5c0858a98a9c7e9e3d2 Mon Sep 17 00:00:00 2001 From: Zynh0722 Date: Tue, 26 Sep 2023 17:14:40 -0700 Subject: [PATCH] comment cleanup --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 11c8a1d..e20c9e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,6 @@ impl AppState { #[tokio::main] async fn main() { // initialize tracing - // tracing_subscriber::fmt::init(); tracing_subscriber::registry() .with( tracing_subscriber::EnvFilter::try_from_default_env() @@ -72,7 +71,6 @@ async fn main() { .unwrap(); } -// basic handler that responds with a static string async fn root(State(state): State) -> impl IntoResponse { let mut conn = state.connection.get().await.unwrap();