RSSHub/lib/v2/ft/channel.js

13 lines
289 B
JavaScript

const utils = require('./utils');
module.exports = async (ctx) => {
ctx.set(
'data',
await utils.getData({
site: ctx.req.param('language') === 'chinese' ? 'www' : 'big5',
channel: ctx.req.param('channel'),
ctx,
})
);
};