mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
update readme
This commit is contained in:
parent
5901f0f9f5
commit
663492407d
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,9 @@ fn main() {
|
|||
|
||||
// start http server
|
||||
HttpServer::new(
|
||||
// create routing map with `MyRoute` route
|
||||
// create routing map
|
||||
RoutingMap::default()
|
||||
// handler for "GET /"
|
||||
.resource("/", |r|
|
||||
r.handler(Method::GET, |req, payload, state| {
|
||||
httpcodes::HTTPOk
|
||||
|
@ -62,6 +63,5 @@ fn main() {
|
|||
});
|
||||
|
||||
system.run();
|
||||
println!("Done");
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue