Add base structure for bot. Rename questions.txt

This commit is contained in:
Ceda EI 2019-02-11 00:57:46 +05:30
parent abc1a87a6e
commit 7f2f2173a0
2 changed files with 1779 additions and 0 deletions

21
bot.js Normal file
View File

@ -0,0 +1,21 @@
const Telegraf = require("telegraf");
const { BOT_API_KEY } = process.env;
const fs = require("fs").promises;
const commands = require("./commands");
const bot = new Telegraf(BOT_API_KEY);
const data = [
"questions",
"kys",
"insults",
"commands_list"
].map(file =>
fs.readFile(file + ".txt", "utf-8")
.then(list =>
list.split("\n")));
Promise.all(data)
.then(data =>
commands(bot, data));

1758
questions.txt Normal file

File diff suppressed because it is too large Load Diff