reactive_graph_instance_system_rest/
entities.rs

1use actix_web::HttpResponse;
2use actix_web::get;
3
4use crate::json_schema_response;
5use reactive_graph_instance_system_json_schema::schema_entity_instances;
6
7#[get("/instances/entities/schema")]
8pub async fn json_schema_entity_instances() -> HttpResponse {
9    json_schema_response(schema_entity_instances())
10}