1
0
mirror of https://github.com/actix/actix-website synced 2025-02-08 22:36:07 +01:00

26 lines
545 B
Rust
Raw Normal View History

2019-06-17 15:15:33 -04:00
// <json-resp>
2019-06-26 01:58:47 -04:00
use actix_web::{web, HttpResponse, Result};
use serde::{Deserialize, Serialize};
2019-06-17 15:15:33 -04:00
2019-06-26 01:58:47 -04:00
#[derive(Serialize, Deserialize)]
2019-06-17 15:15:33 -04:00
struct MyObj {
name: String,
}
2019-06-26 01:58:47 -04:00
fn index(obj: web::Path<MyObj>) -> Result<HttpResponse> {
Ok(HttpResponse::Ok().json(MyObj {
name: obj.name.to_string(),
2019-06-17 15:15:33 -04:00
}))
}
pub fn main() {
2019-06-26 01:58:47 -04:00
use actix_web::{App, HttpServer};
HttpServer::new(|| App::new().route(r"/a/{name}", web::get().to(index)))
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
2019-06-17 15:15:33 -04:00
}
// </json-resp>