mpp-openai-bot/index.js
2021-12-21 22:45:39 -05:00

5 lines
154 B
JavaScript

require('dotenv').config();
const MPPCLONE_TOKEN = process.env.MPPCLONE_TOKEN;
const { Bot } = require('./src/bot');
const bot = new Bot(MPPCLONE_TOKEN);