mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2025-12-30 18:19:46 -06:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
import {Router} from 'express';
|
|
import recommend from '../services/recommend';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/most-watched', recommend.getMostWatched);
|
|
|
|
export default router;
|