RSSHub/lib/routes/test/api-index.ts

14 lines
199 B
TypeScript

import type { APIRoute } from '@/types';
export const apiRoute: APIRoute = {
path: '/',
maintainers: ['DIYgod'],
handler,
};
function handler() {
return {
code: 0,
};
}