Files
RSSHub/lib/routes/javlibrary/videos.js
2020-02-05 17:26:54 +08:00

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);
};