fix static files

This commit is contained in:
Nikolay Kim 2017-12-08 12:29:28 -08:00
parent 774bfc0a86
commit 3e91b06241
5 changed files with 35 additions and 16 deletions

View file

@ -5,14 +5,16 @@ Actix web is a small, fast, down-to-earth, open source rust web framework.
```rust,ignore
use actix_web::*;
fn index(req: HttpRequest) -> String {
format!("Hello {}!", &req.match_info()["name"])
fn index(req: HttpRequest) -> String
{
format!("Hello {}!",
&req.match_info()["name"])
}
fn main() {
HttpServer::new(
Application::new("/")
.resource("/{name}", |r| r.method(Method::GET).f(index)))
HttpServer::new(Application::new("/")
.resource("/{name}",
|r| r.method(Method::GET).f(index)))
.serve::<_, ()>("127.0.0.1:8080");
}
```