mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
simplify application creation
This commit is contained in:
parent
87c7441f7d
commit
c63f058647
26 changed files with 150 additions and 138 deletions
|
@ -3,7 +3,6 @@
|
|||
Actix web is a small, fast, down-to-earth, open source rust web framework.
|
||||
|
||||
```rust,ignore
|
||||
extern crate actix_web;
|
||||
use actix_web::*;
|
||||
|
||||
fn index(req: HttpRequest) -> String {
|
||||
|
@ -12,7 +11,7 @@ fn index(req: HttpRequest) -> String {
|
|||
|
||||
fn main() {
|
||||
HttpServer::new(
|
||||
Application::default("/")
|
||||
Application::new("/")
|
||||
.resource("/{name}", |r| r.method(Method::GET).f(index)))
|
||||
.serve::<_, ()>("127.0.0.1:8080");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue