Files: f4dab21d95cabd1f4db3906fa99ea971a8672620 / index.js
269 bytesRaw
1 | const { |
2 | create: poll, |
3 | schema: pollSchema, |
4 | validate: isPoll |
5 | } = require('./poll') |
6 | |
7 | const { |
8 | create: stance, |
9 | schema: stanceSchema, |
10 | validate: isStance |
11 | } = require('./stance') |
12 | |
13 | module.exports = { |
14 | poll, pollSchema, isPoll, |
15 | stance, stanceSchema, isStance, |
16 | } |
17 |
Built with git-ssb-web