git ssb

0+

Piet / ssb-loomio



Tree: 0e0922a38a178fc20c0532642828075f0de37a72

Files: 0e0922a38a178fc20c0532642828075f0de37a72 / index.js

491 bytesRaw
1const verboseMethods = {
2 poll: {
3 async: {
4 // publishPoll: require('./async/publishPoll')
5 },
6 sync: {
7 isPoll: require('./sync/isPoll')
8 // Poll: // this is not exported - doesn't follow the inject pattern atm
9 }
10 },
11 position: {
12
13 }
14}
15
16const easyMethods = {
17 isPoll: require('./sync/isPoll')
18}
19
20module.exports = function (server, opts) {
21 const methods = Object.assign({}, verboseMethods, easyMethods)
22 return require('./lib/inject')(server, methods)
23}
24

Built with git-ssb-web