Улучшение взаимодействия и добавление веб-приложения

This commit is contained in:
2026-01-09 01:20:30 +03:00
parent eed252d52e
commit 2472947c1f
16 changed files with 2972 additions and 969 deletions

7
handlers/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from . import user, admin, payment
routers = [
user.router,
admin.router,
payment.router
]