1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00

update readme example

This commit is contained in:
Nikolay Kim 2018-01-02 19:57:25 -08:00
parent 7af3b3f956
commit 9e6d090fd0

View file

@ -3,6 +3,8 @@
Actix web is a small, fast, down-to-earth, open source rust web framework.
```rust,ignore
extern crate actix;
extern crate actix_web;
use actix_web::*;
fn index(req: HttpRequest) -> String {
@ -10,11 +12,14 @@ fn index(req: HttpRequest) -> String {
}
fn main() {
let sys = actix::System::new("readme");
HttpServer::new(
|| Application::new()
.resource("/{name}", |r| r.f(index)))
.bind("127.0.0.1:8080")?
.bind("127.0.0.1:8080").unwrap()
.start();
sys.run();
}
```