git ssb

0+

Piet / ssb-loomio



Tree: f27bf8aaaf68d1e696f1403368303317c975cc5d

Files: f27bf8aaaf68d1e696f1403368303317c975cc5d / methods.js

609 bytesRaw
1// verbose export of public methods
2
3module.exports = {
4 poll: {
5 async: {
6 chooseOne: require('./poll/async/chooseOne'),
7 get: require('./poll/async/get')
8 },
9 sync: {
10 isPoll: require('./poll/sync/isPoll'),
11 isChooseOnePoll: require('./poll/sync/isChooseOnePoll')
12 // Poll: // this is not exported - doesn't follow the inject pattern atm
13 }
14 },
15 position: {
16 async: {
17 chooseOne: require('./position/async/chooseOne'),
18 position: require('./position/async/position')
19 },
20 sync: {
21 isPosition: require('./position/sync/isPosition')
22 }
23 }
24}
25

Built with git-ssb-web