Files: 8e0f851a65304725b4dee57658fafae8f4121658 / methods.js
417 bytesRaw
1 | // verbose export of public methods |
2 | |
3 | module.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 | sync: { |
16 | isPosition: require('./position/sync/isPosition') |
17 | } |
18 | } |
19 | } |
20 |
Built with git-ssb-web