Update import paths

This commit is contained in:
Nikola Petrov
2024-09-23 23:24:59 +02:00
parent 93241aae82
commit 4667dfee78
9 changed files with 15 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
import express, { type Request, type Response } from "express";
import checkAuthenticated from '../../miscellaneous/checkAuthenticated';
import mediaRouter from './mediaRouter';
import cashTransactionRouter from './cashTransactionRouter';
import checkAuthenticated from 'miscellaneous/checkAuthenticated';
import mediaRouter from 'routes/api/mediaRouter';
import cashTransactionRouter from 'routes/api/cashTransactionRouter';
const router = express.Router();

View File

@@ -1,6 +1,6 @@
import express, { type Request, type Response } from "express";
import userController from '../controllers/userController';
import checkAuthenticated from '../miscellaneous/checkAuthenticated';
import userController from 'controllers/userController';
import checkAuthenticated from 'miscellaneous/checkAuthenticated';
const router = express.Router();