merging cleanup rollup. whee!!

This commit is contained in:
2025-08-11 16:11:13 -05:00
parent 0e681d2ff5
commit ed0cdaf643
10 changed files with 66 additions and 0 deletions

11
1-server/static-server.js Executable file
View File

@@ -0,0 +1,11 @@
var express = require('express');
function StaticServer() {
var router = express.Router();
router.use('/', express.static(__dirname + '/..'));
return router
}
module.exports = StaticServer;