1
0
mirror of https://github.com/actix/actix-website synced 2025-02-23 20:53:01 +01:00

30 lines
593 B
Rust
Raw Normal View History

2019-06-16 23:17:17 -04:00
// <multi>
2019-06-20 04:20:12 -04:00
use actix_web::{web, App, HttpServer};
2019-06-16 23:17:17 -04:00
use serde::Deserialize;
#[derive(Deserialize)]
struct Info {
username: String,
}
2019-06-20 04:20:12 -04:00
fn index((path, query): (web::Path<(u32, String)>, web::Query<Info>)) -> String {
format!(
"Welcome {}, friend {}, useri {}!",
query.username, path.1, path.0
)
2019-06-16 23:17:17 -04:00
}
pub fn main() {
2019-06-20 04:20:12 -04:00
HttpServer::new(|| {
App::new().route(
"/users/{userid}/{friend}", // <- define path parameters
web::get().to(index),
)
})
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
2019-06-16 23:17:17 -04:00
}
// </multi>