Описание изменений

This commit is contained in:
2025-02-19 12:36:38 +03:00
parent b56e6b5e46
commit 7cb967138d
20 changed files with 1886 additions and 297 deletions

8
backend/routes/api.js Normal file
View File

@@ -0,0 +1,8 @@
import express from 'express';
const router = express.Router();
router.post('/verify', async (req, res) => {
// Логика верификации
});
export default router;