git ssb

16+

Dominic / patchbay



Tree: c3f7fa2b711eba42632d8b98a3990f0518861403

Files: c3f7fa2b711eba42632d8b98a3990f0518861403 / app / sync / initialise / suggestion-caches.js

374 bytesRaw
1const nest = require('depnest')
2
3exports.gives = nest('app.sync.initialise')
4
5exports.needs = nest({
6 'channel.async.suggest': 'first'
7})
8
9exports.create = function (api) {
10 return nest('app.sync.initialise', init)
11
12 function init () {
13 // lazy load abouts on first use, can be quite heavy during startup
14
15 setTimeout(() => api.channel.async.suggest(), 20e3)
16 }
17}
18

Built with git-ssb-web