git ssb

0+

Zach! / dat-zine-library



Tree: ca62693f16e13179a152c450483643089d7cb17b

Files: ca62693f16e13179a152c450483643089d7cb17b / index.js

389 bytesRaw
1const choo = require('choo')
2
3const library = require('./building/components/library')
4
5const app = choo()
6
7// Jobs to be done by the javascript volunteers
8app.use(require('./volunteers/branchManager'))
9app.use(require('./volunteers/addNewZines'))
10app.use(require('./volunteers/displayBranchInfo'))
11
12app.route('/', library)
13app.route('#collections/:collection', library)
14app.mount('body')
15

Built with git-ssb-web