2024-04-23 15:56:52 +03:00
|
|
|
import { BehaviorTreesPresentation } from "../../features/behavior_trees/behavior_trees";
|
2024-04-09 16:31:25 +03:00
|
|
|
import { DatasetsPresentation } from "../../features/datasets/datasets_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";
|
|
|
|
|
|
|
|
extensions();
|
|
|
|
|
2024-04-23 15:56:52 +03:00
|
|
|
export const httpRoutes: Routes[] = [new ProjectsPresentation(), new DatasetsPresentation(), new BehaviorTreesPresentation()].map((el) => el.call());
|