Files: 90dfad001a91b412a745a9cad0dccf4a3ef49dc2 / plugins / unix-socket.js
309 bytesRaw
1 | |
2 | exports.name = 'unix-socket' |
3 | exports.version = '1.0.0' |
4 | exports.init = function (ssk, config) { |
5 | var Unix = require('multiserver/plugins/unix-socket') |
6 | ssk.multiserver.transport({ |
7 | name: 'unix', |
8 | create: function (conf) { |
9 | return Unix(Object.assign(Object.assign({}, conf), config)) |
10 | } |
11 | }) |
12 | } |
13 |
Built with git-ssb-web