update use

This commit is contained in:
2020-04-18 02:27:30 +08:00
parent 1267c4ed30
commit 222e172c17

View File

@@ -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 {