mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
add multiple apps example
This commit is contained in:
parent
3ffd36eee2
commit
1a5df7192e
3 changed files with 28 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue