git ssb

0+

Piet / ssb-loomio



Tree: 9144ab97554ad603dd57ff8d50d81940ac397cc6

Files: 9144ab97554ad603dd57ff8d50d81940ac397cc6 / 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