This commit is contained in:
Patryk Koreń
2026-07-02 23:55:40 +02:00
parent 04e34d15b5
commit e7ec832f5b
53 changed files with 9985 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
// src/routes/auth.ts
import { Router } from "express";
const router = Router();
router.get("/video", async (req, res) => {
res.json({
tajne: "XD"
});
})
export default router;