(State(state): State<AppState>)
| 1735 | } |
| 1736 | |
| 1737 | async fn list_simulators(State(state): State<AppState>) -> Result<Json<Value>, AppError> { |
| 1738 | let simulators = all_device_values(state.clone(), false).await?; |
| 1739 | Ok(json(json_value!({ |
| 1740 | "simulators": simulators, |
| 1741 | }))) |
| 1742 | } |
| 1743 | |
| 1744 | async fn simulator_create_options(State(state): State<AppState>) -> Result<Json<Value>, AppError> { |
| 1745 | let mut options = |
nothing calls this directly
no test coverage detected