(input: DeployStationInput)
| 38 | |
| 39 | #[update(name = "deploy_station")] |
| 40 | async fn deploy_station(input: DeployStationInput) -> ApiResult<DeployStationResponse> { |
| 41 | CONTROLLER.deploy_station(input).await |
| 42 | } |
| 43 | |
| 44 | #[query(name = "can_deploy_station")] |
| 45 | async fn can_deploy_station() -> ApiResult<CanDeployStationResponse> { |
nothing calls this directly
no test coverage detected