mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 18:18:06 +08:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
const { FetchGoItems } = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
ctx.params.id = 'jobs';
|
|
|
|
ctx.state.data = await FetchGoItems(ctx);
|
|
};
|