Files
RSSHub/lib/v2/coomer/posts.js
Ethan Shen c9e423b8f1 feat(route): add Coomer (#9610)
* feat(route): add Coomer

* fix typo
2022-04-25 08:56:03 +08:00

8 lines
166 B
JavaScript

const fetchItems = require('./utils');
module.exports = async (ctx) => {
const currentUrl = 'posts';
ctx.state.data = await fetchItems(ctx, currentUrl);
};