mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
fix static files
This commit is contained in:
parent
774bfc0a86
commit
3e91b06241
5 changed files with 35 additions and 16 deletions
12
README.md
12
README.md
|
@ -5,14 +5,16 @@ Actix web is a small, fast, down-to-earth, open source rust web framework.
|
|||
```rust,ignore
|
||||
use actix_web::*;
|
||||
|
||||
fn index(req: HttpRequest) -> String {
|
||||
format!("Hello {}!", &req.match_info()["name"])
|
||||
fn index(req: HttpRequest) -> String
|
||||
{
|
||||
format!("Hello {}!",
|
||||
&req.match_info()["name"])
|
||||
}
|
||||
|
||||
fn main() {
|
||||
HttpServer::new(
|
||||
Application::new("/")
|
||||
.resource("/{name}", |r| r.method(Method::GET).f(index)))
|
||||
HttpServer::new(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