mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 07:40:26 +08:00
8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
const fetchItems = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const currentUrl = 'posts';
|
|
|
|
ctx.state.data = await fetchItems(ctx, currentUrl);
|
|
};
|