fix: format

This commit is contained in:
Gabriellvl 2025-02-26 20:29:53 +01:00
parent ab17e982c7
commit cfaae9ebe4
4 changed files with 185 additions and 104 deletions

View file

@ -1,9 +1,9 @@
import express from "express";
import { getThemes, getThemeByTitle } from "../controllers/themes.js";
import express from 'express';
import { getThemes, getThemeByTitle } from '../controllers/themes.js';
const router = express.Router();
router.get("/", getThemes);
router.get("/:theme", getThemeByTitle);
router.get('/', getThemes);
router.get('/:theme', getThemeByTitle);
export default router;