Add modular Roblox buyer bot and documentation

This commit is contained in:
2026-07-20 06:24:45 +05:00
commit c9413efd6a
29 changed files with 2607 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
from __future__ import annotations
from aiogram import Bot
_bot: Bot | None = None
_log_bot: Bot | None = None
def set_bots(bot: Bot, log_bot: Bot | None = None) -> None:
global _bot, _log_bot
_bot = bot
_log_bot = log_bot
def get_bot() -> Bot | None:
return _bot
def get_log_bot() -> Bot | None:
return _log_bot