mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-19 21:23:38 -04:00
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
require('dotenv').config();
|
|
const { Inngest } = require('inngest');
|
|
const InngestClient = new Inngest({
|
|
name: 'VDMS Background Workers',
|
|
eventKey: process.env.INNGEST_EVENT_KEY || 'background_workers',
|
|
});
|
|
|
|
module.exports = {
|
|
InngestClient,
|
|
};
|