mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-13 16:49:31 +08:00
* 新增JavBus发行商和制作商订阅 * docs: fix unnecessary changes * refactor: migrate to v2 * docs: remove dup items Co-authored-by: EsuRt <thusid@outlook.com> Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
const { getPage } = require('./util');
|
|
|
|
module.exports = async (ctx) => {
|
|
const { labelid } = ctx.params;
|
|
|
|
ctx.state.data = await getPage(`https://www.javbus.com/label/${labelid}`, ctx);
|
|
};
|