use crate::app::App;
use crate::res;
use crate::response::EitherExt;
use axum::extract::{Json, State};
use axum::response::Response;
use nil_payload::request::cheat::behavior::*;
use nil_payload::response::cheat::behavior::*;
pub async fn get_build_steps(
State(app): State<App>,
Json(req): Json<CheatGetBuildStepsRequest>,
) -> Response {
app
.world(req.world, |world| world.cheat_get_build_steps(req.coord))
.await
.try_map_left(|steps| res!(OK, CheatGetBuildStepsResponse(steps)))
.into_inner()
}