mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 14:07:54 +08:00
close #1475 本地测试没啥问题  
8 lines
189 B
JavaScript
8 lines
189 B
JavaScript
const { getPage } = require('./util');
|
|
|
|
module.exports = async (ctx) => {
|
|
const { sid } = ctx.params;
|
|
|
|
ctx.state.data = await getPage(`https://www.javbus.com/star/${sid}`, ctx);
|
|
};
|