2024-05-13 20:43:11 +03:00
|
|
|
import { BehaviorTreesPresentation } from "../../features/behavior_trees/behavior_trees_presentation";
|
2024-04-09 16:31:25 +03:00
|
|
|
import { DatasetsPresentation } from "../../features/datasets/datasets_presentation";
|
2024-08-13 13:03:28 +03:00
|
|
|
import { CalculationsTemplatePresentation } from "../../features/calculations_templates/calculations_template_presentation";
|
2023-12-19 21:10:58 +03:00
|
|
|
import { ProjectsPresentation } from "../../features/projects/projects_presentation";
|
|
|
|
import { extensions } from "../extensions/extensions";
|
|
|
|
import { Routes } from "../interfaces/router";
|
2024-08-13 13:03:28 +03:00
|
|
|
import { ScenesPresentation } from "../../features/scenes/scenes_presentation";
|
|
|
|
import { CalculationsInstancesPresentation } from "../../features/calculations_instance/calculations_instance_presentation";
|
2023-12-19 21:10:58 +03:00
|
|
|
|
|
|
|
extensions();
|
|
|
|
|
2024-04-25 12:22:21 +03:00
|
|
|
export const httpRoutes: Routes[] = [
|
|
|
|
new ProjectsPresentation(),
|
|
|
|
new DatasetsPresentation(),
|
|
|
|
new BehaviorTreesPresentation(),
|
2024-08-13 13:03:28 +03:00
|
|
|
new CalculationsTemplatePresentation(),
|
|
|
|
new ScenesPresentation(),
|
|
|
|
new CalculationsInstancesPresentation(),
|
2024-04-25 12:22:21 +03:00
|
|
|
].map((el) => el.call());
|