git ssb

0+

Piet / ssb-loomio



Tree: 512187d9f5b379cf169f9439375a044c03de70e4

Files: 512187d9f5b379cf169f9439375a044c03de70e4 / 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