UNPKG

rsshub

Version:
14 lines (11 loc) 297 B
import type { Handler } from 'hono'; import { config } from '@/config'; const handler: Handler = (ctx) => { if (config.disallowRobot) { return ctx.text('User-agent: *\nDisallow: /'); } else { ctx.status(404); return ctx.text(''); } }; export default handler;