ironflow_api/entities/mod.rs
1//! API entities — DTOs and query parameter types.
2//!
3//! These types form the public API contract. They map from internal store
4//! models and are never exposed directly.
5
6mod auth;
7mod create_run;
8mod run;
9mod stats;
10mod step;
11
12pub use auth::{MeResponse, SignInRequest, SignUpRequest};
13pub use create_run::CreateRunRequest;
14pub use run::{ListRunsQuery, RunDetailResponse, RunResponse};
15pub use stats::StatsResponse;
16pub use step::StepResponse;