This commit is contained in:
IDONTSUDO 2024-04-23 15:56:52 +03:00
parent 7e25cc216a
commit c628cdb9af
20 changed files with 654 additions and 124 deletions

View file

@ -1,3 +1,4 @@
import { BehaviorTreesPresentation } from "../../features/behavior_trees/behavior_trees";
import { DatasetsPresentation } from "../../features/datasets/datasets_presentation";
import { ProjectsPresentation } from "../../features/projects/projects_presentation";
// import { ProjectsPresentation } from "../../features/_projects/projects_presentation";
@ -6,4 +7,4 @@ import { Routes } from "../interfaces/router";
extensions();
export const httpRoutes: Routes[] = [new ProjectsPresentation(), new DatasetsPresentation()].map((el) => el.call());
export const httpRoutes: Routes[] = [new ProjectsPresentation(), new DatasetsPresentation(), new BehaviorTreesPresentation()].map((el) => el.call());