Octanite-Bot/bot.js

27 lines
593 B
JavaScript
Raw Normal View History

const Telegraf = require("telegraf");
2019-02-12 08:40:01 +01:00
const { BOT_API_KEY, FEEDBACK_ID } = process.env;
const fs = require("fs").promises;
const commands = require("./commands");
2019-02-12 14:32:38 +01:00
const axios = require("axios");
2021-06-21 19:15:23 +02:00
const roleplay = require("./roleplay.json");
const bot = new Telegraf(BOT_API_KEY);
2019-03-04 10:18:26 +01:00
bot.catch((err) => console.log(err));
const data = [
"questions",
"kys",
"insults",
2019-02-11 23:02:53 +01:00
"commands_list",
"words"
].map(file =>
fs.readFile(file + ".txt", "utf-8")
.then(list =>
list.split("\n")));
Promise.all(data)
.then(data =>
2021-06-21 19:15:23 +02:00
commands(bot, [...data, roleplay], FEEDBACK_ID, axios));
bot.launch();