2024-04-23 10:32:43 +00:00
|
|
|
import { DatasetsPresentation } from "../../features/datasets/datasets_presentation";
|
2023-12-19 21:10:58 +03:00
|
|
|
import { ProjectsPresentation } from "../../features/projects/projects_presentation";
|
2024-04-23 10:32:43 +00:00
|
|
|
// import { ProjectsPresentation } from "../../features/_projects/projects_presentation";
|
2023-12-19 21:10:58 +03:00
|
|
|
import { extensions } from "../extensions/extensions";
|
|
|
|
import { Routes } from "../interfaces/router";
|
|
|
|
|
|
|
|
extensions();
|
|
|
|
|
2024-04-23 10:32:43 +00:00
|
|
|
export const httpRoutes: Routes[] = [new ProjectsPresentation(), new DatasetsPresentation()].map((el) => el.call());
|