Initial commit

This commit is contained in:
Alexander
2026-02-14 20:36:34 +03:00
commit bc7441db20
15 changed files with 2107 additions and 0 deletions

8
src/router.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Router } from "express";
import { proxyHandler } from "./proxy";
const router = Router();
router.all("/proxy", proxyHandler);
export default router;