mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2026-01-24 06:58:37 -06:00
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
import {Router} from 'express';
|
|
import tdawService from '../services/tdaw';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/similar', tdawService.similarMedia);
|
|
router.get('/most-watched', tdawService.mostWatched);
|
|
|
|
export default router;
|