This commit is contained in:
2024-09-26 18:32:50 +05:00
parent 9167785656
commit 86864ac19e
11 changed files with 164 additions and 175 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import { Router } from "express";
const router = Router();
router.get("/", async (req, res) => {
router.get("/", async (_req, res) => {
res.json({ ok: 1 });
});