feat: bot

This commit is contained in:
2025-06-09 14:56:07 +03:00
parent fa112bc95a
commit 0a9bca073f
11 changed files with 393 additions and 1 deletions

9
bot/src/config.ts Normal file
View File

@@ -0,0 +1,9 @@
import * as dotenv from "dotenv";
dotenv.config();
export const Config = {
NODE_ENV: process.env.NODE_ENV || "development",
BOT_TOKEN: process.env.BOT_TOKEN || "",
BOT_MINIAPP_URL: process.env.BOT_MINIAPP_URL || "",
};