Init WIP Bot

This commit is contained in:
Logan Cusano
2022-12-11 06:09:25 -05:00
parent f1f4cb7750
commit 4e1b82c557
43 changed files with 6766 additions and 0 deletions

16
Server/routes/admin.js Normal file
View File

@@ -0,0 +1,16 @@
var express = require('express');
var router = express.Router();
/* GET */
router.get('/', (req, res) => {
res.send('GET request to the admin')
})
/* POST */
router.post('/', (req, res) => {
console.log(req.body);
res.send('POST request to the post')
})
module.exports = router;