mirror of
https://github.com/franjsco/tick3t-api
synced 2025-06-05 22:09:20 +02:00
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
const express = require('express');
|
|
|
|
const router = express.Router();
|
|
const categoriesController = require('../controllers/category');
|
|
|
|
router.get('/', categoriesController.getById);
|
|
|
|
module.exports = router;
|