1
0
mirror of https://github.com/actix/actix-website synced 2025-03-20 22:55:17 +01:00
2019-12-29 04:10:02 +09:00

23 lines
501 B
Rust

// <path>
use actix_web::{web, Result};
async fn index(info: web::Path<(String, u32)>) -> Result<String> {
Ok(format!("Welcome {}! id: {}", info.0, info.1))
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
use actix_web::{App, HttpServer};
HttpServer::new(|| {
App::new().route(
"/{username}/{id}/index.html", // <- define path parameters
web::get().to(index),
)
})
.bind("127.0.0.1:8088")?
.run()
.await
}
// </path>