fix: correct import path in media.routes.ts
Some checks are pending
Deploy Código 0 / deploy (push) Waiting to run

This commit is contained in:
Javier 2026-03-26 00:03:04 +01:00
parent 7985591f33
commit 4feb7bec82

View file

@ -2,7 +2,7 @@ import { Router } from 'express';
import multer from 'multer';
import path from 'path';
import fs from 'fs';
import { MediaModel } from '../database/models/MediaModel';
import { MediaModel } from '../../database/models/MediaModel';
const router = Router();