mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2026-01-06 05:29:34 -06:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
import tdawController from '../controllers/tdaw.controller';
|
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
|
|
|
router.use(tdawController);
|
|
|
|
export default router;
|