mirror of
https://github.com/actix/actix-website
synced 2024-12-03 20:22:13 +01:00
26 lines
545 B
Rust
26 lines
545 B
Rust
// <json-resp>
|
|
use actix_web::{web, HttpResponse, Result};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct MyObj {
|
|
name: String,
|
|
}
|
|
|
|
fn index(obj: web::Path<MyObj>) -> Result<HttpResponse> {
|
|
Ok(HttpResponse::Ok().json(MyObj {
|
|
name: obj.name.to_string(),
|
|
}))
|
|
}
|
|
|
|
pub fn main() {
|
|
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();
|
|
}
|
|
// </json-resp>
|