mirror of https://github.com/Kylart/KawAnime.git
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
![]() |
const {get, save} = require('./watchList.js')
|
||
|
|
||
|
const routes = [
|
||
|
(app) => app.get('/watchList.json', get),
|
||
|
(app) => app.post('/saveWatchList', save)
|
||
|
]
|
||
|
|
||
|
module.exports = routes
|