From 715e624d8c5169cc8d7f3f5f34a6ea13ea4e2769 Mon Sep 17 00:00:00 2001 From: PatatasDelPapa <43626645+PatatasDelPapa@users.noreply.github.com> Date: Tue, 3 Aug 2021 15:55:27 -0400 Subject: [PATCH] Remove unused imports from example (#104) Remove unused imports from the first crate documentation example. --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 318f6c37..68f7d2bf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,9 +47,6 @@ //! //! ```rust,no_run //! use axum::prelude::*; -//! use hyper::Server; -//! use std::net::SocketAddr; -//! use tower::make::Shared; //! //! #[tokio::main] //! async fn main() {