git ssb

16+

Dominic / patchbay



Tree: ed0d0518717fe16a686399588766fb35b3e6e37a

Files: ed0d0518717fe16a686399588766fb35b3e6e37a / 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