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/api.js Normal file
View File

@@ -0,0 +1,7 @@
const express = require('express')
const router = express.Router();
const { sendMessagePost } = require('../controllers/web')|
router.post('/send', sendMessagePost)
module.exports = router