From 1e2f891f312da7336fb1488105d3da79f031aed5 Mon Sep 17 00:00:00 2001 From: xion Date: Wed, 21 May 2025 17:17:58 +0800 Subject: [PATCH] add r functions --- src/module/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/index.ts b/src/module/index.ts index 49aa310..7d789bc 100644 --- a/src/module/index.ts +++ b/src/module/index.ts @@ -226,7 +226,7 @@ export const handleRequest = async (req: http.IncomingMessage, res: http.ServerR res.write(msg || 'Not Found App\n'); res.end(); }; - if (app === 'ai' || app === 'resources') { + if (app === 'ai' || app === 'resources' || app === 'r') { return aiProxy(req, res, { createNotFoundPage, });