mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 23:34:38 +08:00
8 lines
244 B
JavaScript
8 lines
244 B
JavaScript
const utils = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const date = ctx.params.date ?? `${new Date().getFullYear()}/${new Date().getMonth()}`;
|
|
|
|
ctx.state.data = await utils(ctx, `books/date/${date.replace('-', '/')}`);
|
|
};
|