add multiple apps example

This commit is contained in:
Nikolay Kim 2017-12-01 23:32:15 -08:00
parent 3ffd36eee2
commit 1a5df7192e
3 changed files with 28 additions and 2 deletions

View file

@ -68,7 +68,7 @@ fn main() {
))
// register simple handle r, handle all methods
.handler("/index.html", index)
// with path parameters
// with path parameters
.resource("/user/{name}/", |r| r.handler(Method::GET, with_param))
// async handler
.resource("/async/{name}", |r| r.async(Method::GET, index_async))