(Path(id): Path<i32>, State(ctx): State<AppContext>)
| 55 | } |
| 56 | |
| 57 | pub async fn get_one(Path(id): Path<i32>, State(ctx): State<AppContext>) -> Result<Response> { |
| 58 | format::json(load_item(&ctx, id).await?) |
| 59 | } |
| 60 | |
| 61 | pub fn routes() -> Routes { |
| 62 | Routes::new() |