Files: 6ff5525de64024e3f4384c5852534166d5c68063 / index.js
298 bytesRaw
1 | const raw = require('./methods') |
2 | |
3 | const niceMappings = { |
4 | isPoll: raw.poll.sync.isPoll |
5 | } |
6 | // by following this pattern you can write your own API |
7 | |
8 | module.exports = function (server, opts) { |
9 | const methods = Object.assign({}, raw, niceMappings) |
10 | |
11 | return require('./lib/inject')(server, methods) |
12 | } |
13 |
Built with git-ssb-web