import { BehaviorTreesPresentation } from "../../features/behavior_trees/behavior_trees_presentation"; import { DatasetsPresentation } from "../../features/datasets/datasets_presentation"; import { WeightsPresentation } from "../../features/weights/weights_presentation"; import { ProjectsPresentation } from "../../features/projects/projects_presentation"; import { extensions } from "../extensions/extensions"; import { Routes } from "../interfaces/router"; import { ScenePresentation } from "../../features/scene/scene_presentation"; extensions(); export const httpRoutes: Routes[] = [ new ProjectsPresentation(), new DatasetsPresentation(), new BehaviorTreesPresentation(), new WeightsPresentation(), new ScenePresentation() ].map((el) => el.call());