Админ-панель: команда /admin, user_name при создании записи, отмена брони админом

This commit is contained in:
devproject
2026-06-14 21:20:37 +04:00
parent 4f6a27ef85
commit fb6aa7cf4a
3 changed files with 6 additions and 3 deletions
+2
View File
@@ -16,6 +16,7 @@ from app.handlers.mybookings import router as mybookings_router
from app.handlers.services import router as services_router
from app.handlers.about import router as about_router
from app.handlers.contacts import router as contacts_router
from app.handlers.admin import router as admin_router
bot = Bot(token=BOT_TOKEN)
dp = Dispatcher()
@@ -29,6 +30,7 @@ dp.include_routers(
services_router,
about_router,
contacts_router,
admin_router,
)