git ssb

2+

mixmix / ticktack



Tree: 021e7a99e236ef274a1b490eb4b6e6958cbb71f4

Files: 021e7a99e236ef274a1b490eb4b6e6958cbb71f4 / message / async / publish.js

408 bytesRaw
1const h = require('mutant/h')
2const nest = require('depnest')
3
4exports.needs = nest({
5 'sbot.async.publish': 'first'
6})
7
8exports.gives = nest('message.async.publish')
9
10exports.create = function (api) {
11 return nest('message.async.publish', (content, cb) => {
12 api.sbot.async.publish(content, (err, data) => {
13 console.log('publish:', err, data)
14
15 cb(err, data)
16 })
17
18 return true
19 })
20}
21
22

Built with git-ssb-web