ironflow-api 2.11.1

REST API for ironflow run management and observability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Internal routes for worker-to-API communication.
//!
//! Protected by a static bearer token (`WORKER_TOKEN`).
//!
//! These routes return raw store entities (not public DTOs) so the worker
//! can deserialize them as `Run`, `Step`, etc. without losing fields like
//! `FsmState<RunStatus>` or `payload`.

pub mod create_run;
pub mod create_step;
pub mod create_step_dependencies;
pub mod get_run;
pub mod pick_next_run;
pub mod update_run;
pub mod update_run_status;
pub mod update_step;