(supervisor: &State<Supervisor>, id: &str)
| 64 | |
| 65 | #[get("/info/<id>")] |
| 66 | fn info(supervisor: &State<Supervisor>, id: &str) -> Json<Response<Option<ProcessInfo>>> { |
| 67 | to_json(Ok(supervisor.info(id))) |
| 68 | } |
| 69 | |
| 70 | #[get("/ping")] |
| 71 | fn ping() -> Json<Response<&'static str>> { |