Commit inicial

This commit is contained in:
2022-12-08 16:53:35 -06:00
commit cf9daf2193
36 changed files with 11355 additions and 0 deletions

7
routes/web.js Normal file
View File

@@ -0,0 +1,7 @@
const express = require('express');
const router = express.Router()
const { getQr } = require('../controllers/web')
router.use('/qr', getQr)
module.exports = router