From b13b9d22881773b894cf9f73b9ffb60e924fb4be Mon Sep 17 00:00:00 2001 From: Yumin Wu Date: Wed, 29 Nov 2023 01:29:10 +0800 Subject: [PATCH] Remove unused imports in readme example (#2367) --- axum/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/axum/README.md b/axum/README.md index c3b95834..dc7f1a95 100644 --- a/axum/README.md +++ b/axum/README.md @@ -29,11 +29,9 @@ applications written using [`hyper`] or [`tonic`]. use axum::{ routing::{get, post}, http::StatusCode, - response::IntoResponse, Json, Router, }; use serde::{Deserialize, Serialize}; -use std::net::SocketAddr; #[tokio::main] async fn main() {