mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 22:06:32 +01:00
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
|
const redis = require('redis').createClient(process.env.REDIS_URI)
|
||
|
|
||
|
const chan = process.env.PUB_CHANNEL
|
||
|
|
||
|
let i = 0
|
||
|
setInterval(_ => redis.publish(chan, JSON.stringify({ foo: 'bar', i: ++i })), 1000)
|