From 222e172c1716a596f110b43244025acd49649a1d Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sat, 18 Apr 2020 02:27:30 +0800 Subject: [PATCH] update use --- actix-web/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/actix-web/src/main.rs b/actix-web/src/main.rs index 083d80e..96074c6 100644 --- a/actix-web/src/main.rs +++ b/actix-web/src/main.rs @@ -1,4 +1,6 @@ -use actix_web::{get, web, App, HttpServer, Responder, HttpRequest, HttpResponse}; +use actix_web::{ + get, web, App, HttpServer, Responder, HttpRequest, HttpResponse, +}; #[get("/{id}/{name}/index.html")] async fn index(info: web::Path<(u32, String)>) -> impl Responder {