running prettier across the app

This commit is contained in:
Will Baumbach
2025-08-06 23:29:48 -05:00
parent 838068e759
commit bcd78e3f89
9 changed files with 14080 additions and 14097 deletions

View File

@@ -1,10 +1,9 @@
import express from 'express';
const router = express.Router();
import express from 'express'
const router = express.Router()
/* GET home page. */
router.get('/', function(req, res, next) {
res.send('index');
});
router.get('/', function (req, res, next) {
res.send('index')
})
export default router;
export default router