mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 15:47:48 +08:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
const template = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const vtype = ctx.params.vtype;
|
|
ctx.state.data = {
|
|
link: `http://www.javlibrary.com/cn/vl_${vtype}.php`,
|
|
};
|
|
await template(ctx);
|
|
};
|