Files: 1d00890a14bdf0c9171a35b91badb806876cffe6 / index.js
342 bytesRaw
1 | const choo = require('choo') |
2 | |
3 | const library = require('./building/components/library') |
4 | |
5 | const app = choo() |
6 | |
7 | // Jobs to be done by the javascript volunteers |
8 | app.use(require('./volunteers/branchManager')) |
9 | app.use(require('./volunteers/addNewZines')) |
10 | app.use(require('./volunteers/displayBranchInfo')) |
11 | |
12 | app.mount('body') |
13 | app.route('/', library) |
14 |
Built with git-ssb-web