mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 07:12:51 +08:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
const template = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const sid = ctx.params.sid;
|
|
ctx.state.data = {
|
|
link: `http://www.javlibrary.com/cn/vl_star.php?s=${sid}`,
|
|
};
|
|
await template(ctx);
|
|
};
|