Fetch image from MovieDB and set user_id in library update

This commit is contained in:
mjrode
2019-04-06 02:23:56 -05:00
parent 8ba5395421
commit acfb79e73d
19 changed files with 264 additions and 52 deletions
@@ -0,0 +1,8 @@
import {Router} from 'express';
import recommend from '../services/recommend';
const router = Router();
router.get('/most-watched', recommend.getMostWatched);
export default router;