Add base structure for bot. Rename questions.txt
This commit is contained in:
parent
abc1a87a6e
commit
7f2f2173a0
21
bot.js
Normal file
21
bot.js
Normal 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
1758
questions.txt
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user