reactive_graph_instance_system_rest/flows.rs
1use actix_web::HttpResponse;
2use actix_web::get;
3
4use crate::json_schema_response;
5use reactive_graph_instance_system_json_schema::schema_flow_instances;
6
7#[get("/instances/flows/schema")]
8pub async fn json_schema_flow_instances() -> HttpResponse {
9 json_schema_response(schema_flow_instances())
10}