mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
const { baseUrl, getBoards } = require('./utils');
|
|
|
|
module.exports = async (ctx) => {
|
|
const items = await getBoards(ctx.cache.tryGet);
|
|
|
|
ctx.state.data = {
|
|
title: '看板列表',
|
|
link: `${baseUrl}/board/all`,
|
|
item: items,
|
|
};
|
|
};
|