swaggerready

This commit is contained in:
ZOMBIIIIIII
2026-05-14 01:11:20 +03:00
parent 0661fffb88
commit 53635806d6
9 changed files with 1139 additions and 56 deletions

View File

@@ -0,0 +1,8 @@
import { Router } from 'express';
import { PricesController } from '../controllers/prices.controller';
const router = Router();
router.get('/', PricesController.getPrices);
export default router;