mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
update tests
This commit is contained in:
parent
2dafd9c681
commit
691457fbfe
5 changed files with 10 additions and 10 deletions
|
@ -33,14 +33,14 @@ Actix web is a simple, pragmatic, extremely fast, web framework for Rust.
|
|||
|
||||
```rust
|
||||
extern crate actix_web;
|
||||
use actix_web::{App, HttpServer, Path};
|
||||
use actix_web::{server, App, Path};
|
||||
|
||||
fn index(info: Path<(String, u32)>) -> String {
|
||||
format!("Hello {}! id:{}", info.0, info.1)
|
||||
}
|
||||
|
||||
fn main() {
|
||||
HttpServer::new(
|
||||
server::new(
|
||||
|| App::new()
|
||||
.resource("/{name}/{id}/index.html", |r| r.with(index)))
|
||||
.bind("127.0.0.1:8080").unwrap()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue