git ssb

0+

Piet / ssb-loomio



Tree: be47c4200236fb818783a444f2a01b0707ec0a46

Files: be47c4200236fb818783a444f2a01b0707ec0a46 / index.js

412 bytesRaw
1const raw = require('./methods')
2const PLUGIN_DEPS = ['backlinks']
3
4const niceMappings = {
5 isPoll: raw.poll.sync.isPoll,
6 // publish: {
7 // chooseOne: raw.poll.async.chooseOne
8 // }
9}
10// by following this pattern you can write your own API
11
12module.exports = function (server, opts) {
13 const methods = Object.assign({}, raw, niceMappings)
14
15 return require('./lib/inject')(server, methods, PLUGIN_DEPS)
16}
17

Built with git-ssb-web