Files: ca62693f16e13179a152c450483643089d7cb17b / index.js
389 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.route('/', library) |
13 | app.route('#collections/:collection', library) |
14 | app.mount('body') |
15 |
Built with git-ssb-web