UNPKG

rsshub

Version:
14 lines (11 loc) 247 B
import { Route } from '@/types'; import { ProcessItems } from '../utils'; export const route: Route = { path: '*', name: 'Unknown', maintainers: [], handler, }; async function handler(ctx) { return await ProcessItems(ctx); }