mirror of
https://github.com/franjsco/NotificamBot
synced 2025-02-16 19:30:49 +01:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
const redis = require('redis');
|
|
|
|
const publisher = redis.createClient();
|
|
|
|
publisher.publish("NotificamBot", JSON.stringify({
|
|
code:'generic',
|
|
description: 'event test',
|
|
options: {}
|
|
}));
|
|
|
|
|
|
publisher.quit();
|