move interfaces and types to src

This commit is contained in:
creations 2024-08-09 09:39:24 -04:00
parent f7617be223
commit 032af39785
5 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
import { dirname, join } from "path"; import { dirname, join } from "path";
import { fileURLToPath } from "url"; import { fileURLToPath } from "url";
import type{ IEnvironment } from "../interfaces/environment"; import type{ IEnvironment } from "../src/interfaces/environment";
const __dirname : string = join(dirname(fileURLToPath(import.meta.url)), ".."); const __dirname : string = join(dirname(fileURLToPath(import.meta.url)), "..");

View file

@ -1,5 +1,5 @@
import type { FastifyReply, FastifyRequest } from "fastify"; import type { FastifyReply, FastifyRequest } from "fastify";
import type { IRouteInfo } from "../../../interfaces/routes"; import type { IRouteInfo } from "../../interfaces/routes";
const routeInfo: IRouteInfo = { const routeInfo: IRouteInfo = {
enabled: true, enabled: true,