git ssb

0+

Piet / ssb-loomio



Tree: 0618fd5aff9f68b923f7a9102c66f3367fac4939

Files: 0618fd5aff9f68b923f7a9102c66f3367fac4939 / methods.js

546 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 // Poll: // this is not exported - doesn't follow the inject pattern atm
12 }
13 },
14 position: {
15 async: {
16 chooseOne: require('./position/async/chooseOne'),
17 position: require('./position/async/position')
18 },
19 sync: {
20 isPosition: require('./position/sync/isPosition')
21 }
22 }
23}
24

Built with git-ssb-web