mirror of
https://github.com/actix/actix-web.git
synced 2025-01-04 14:28:50 +00:00
fixes missing import in example (#1210)
This commit is contained in:
parent
1b8d747937
commit
4a1695f719
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust.
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
use actix_web::{get, App, HttpServer, Responder};
|
use actix_web::{get, web, App, HttpServer, Responder};
|
||||||
|
|
||||||
#[get("/{id}/{name}/index.html")]
|
#[get("/{id}/{name}/index.html")]
|
||||||
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
|
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
|
||||||
|
|
Loading…
Reference in a new issue