update tests

This commit is contained in:
Nikolay Kim 2018-04-06 09:45:10 -07:00
parent 2dafd9c681
commit 691457fbfe
5 changed files with 10 additions and 10 deletions

View file

@ -33,14 +33,14 @@ Actix web is a simple, pragmatic, extremely fast, web framework for Rust.
```rust
extern crate actix_web;
use actix_web::{App, HttpServer, Path};
use actix_web::{server, App, Path};
fn index(info: Path<(String, u32)>) -> String {
format!("Hello {}! id:{}", info.0, info.1)
}
fn main() {
HttpServer::new(
server::new(
|| App::new()
.resource("/{name}/{id}/index.html", |r| r.with(index)))
.bind("127.0.0.1:8080").unwrap()