fix: format
This commit is contained in:
parent
ab17e982c7
commit
cfaae9ebe4
4 changed files with 185 additions and 104 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue