mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
use Route for Applicaiton handlers
This commit is contained in:
parent
f5d6179a34
commit
e332c1242f
16 changed files with 61 additions and 80 deletions
|
@ -67,7 +67,7 @@ fn main() {
|
|||
// websocket route
|
||||
.resource("/ws/", |r| r.route().method(Method::GET).f(ws_index))
|
||||
// static files
|
||||
.route("/", fs::StaticFiles::new("examples/static/", true)))
|
||||
.route("/", |r| r.h(fs::StaticFiles::new("examples/static/", true))))
|
||||
// start http server on 127.0.0.1:8080
|
||||
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue