Много переделал

This commit is contained in:
Disledg
2025-01-07 08:28:59 +03:00
parent 5997d67640
commit a9a137b766
29 changed files with 604 additions and 782 deletions

7
handlers/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from .start import router as start_router
from .profile import router as profile_router
from .subscriptions import router as subscriptions_router
from .support import router as support_router
# Экспортируем все маршрутизаторы
routers = [start_router,profile_router,subscriptions_router,support_router]