zixineabra
Version:
A Telegram utility bot for managing sessions, logging in accounts, and retrieving WebView data.
9 lines (8 loc) • 336 B
JavaScript
require("dotenv").config();
module.exports = {
useTelegramBot: false, // Set to false if you don't want to use the Telegram bot
telegramBotToken: process.env.TELEGRAM_BOT_TOKEN || "",
authorizedUsers: process.env.AUTHORIZED_USERS
? process.env.AUTHORIZED_USERS.split(",").map((id) => parseInt(id.trim()))
: [],
};