feat(bot): add bot account ownership and balance

This commit is contained in:
2026-07-24 10:44:48 +05:00
parent 87385228ea
commit 8bd5c80693
22 changed files with 1008 additions and 393 deletions
+6
View File
@@ -16,6 +16,9 @@ from bot.handlers.navigation import router as navigation_router
from bot.handlers.redeem import router as redeem_router
from bot.handlers.start import router as start_router
from bot.handlers.twofa import router as twofa_router
from bot.handlers.uploads import router as uploads_router
from bot.handlers.profile import router as profile_router
from bot.handlers.admin import router as admin_router
logger = logging.getLogger(__name__)
@@ -30,6 +33,9 @@ dp.include_router(twofa_router)
dp.include_router(inventory_router)
dp.include_router(redeem_router)
dp.include_router(messages_router)
dp.include_router(uploads_router)
dp.include_router(profile_router)
dp.include_router(admin_router)
async def main() -> None: