mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 10:38:03 +08:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
const utils = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
ctx.state.data = await utils.getData({
|
|
site: ctx.params.language === 'chinese' ? 'www' : 'big5',
|
|
channel: ctx.params.channel,
|
|
ctx,
|
|
});
|
|
};
|