2024-12-01 16:12:08 +00:00
|
|
|
import { BehaviorTreesPresentation } from "../../features/behavior_trees/behavior_trees_presentation";
|
2024-04-23 10:32:43 +00:00
|
|
|
import { DatasetsPresentation } from "../../features/datasets/datasets_presentation";
|
2024-12-01 16:12:08 +00: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-12-01 16:12:08 +00:00
|
|
|
import { ScenesPresentation } from "../../features/scenes/scenes_presentation";
|
|
|
|
import { CalculationsInstancesPresentation } from "../../features/calculations_instance/calculations_instance_presentation";
|
|
|
|
import { DigitalTwinsInstancePresentation } from "../../features/digital_twins_instance/digital_twins_instance_presentation";
|
|
|
|
import { DigitalTwinsTemplatePresentation } from "../../features/digital_twins_template/digital_twins_template_presentation";
|
|
|
|
import { TopicsPresentation } from "../../features/topics/topics_presentation";
|
|
|
|
import { SkillsPresentation } from "../../features/skills/skill_presentation";
|
|
|
|
import { RunTimePresentation } from "../../features/runtime/runtime_presentation";
|
2023-12-19 21:10:58 +03:00
|
|
|
|
|
|
|
extensions();
|
|
|
|
|
2024-12-01 16:12:08 +00:00
|
|
|
export const httpRoutes: Routes[] = [
|
|
|
|
new ProjectsPresentation(),
|
|
|
|
new DatasetsPresentation(),
|
|
|
|
new ScenesPresentation(),
|
|
|
|
new BehaviorTreesPresentation(),
|
|
|
|
new CalculationsTemplatePresentation(),
|
|
|
|
new CalculationsInstancesPresentation(),
|
|
|
|
new DigitalTwinsTemplatePresentation(),
|
|
|
|
new DigitalTwinsInstancePresentation(),
|
|
|
|
new TopicsPresentation(),
|
|
|
|
new SkillsPresentation(),
|
|
|
|
new RunTimePresentation(),
|
|
|
|
].map((el) => el.call());
|