add dialog for events_list

This commit is contained in:
2025-09-25 21:51:46 +03:00
parent 91f247c8b4
commit 5982351dd2
5 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
from aiogram.types import User
from aiogram_dialog import DialogManager
async def events_getter(dialog_manager: DialogManager, event_from_user: User, **kwargs) -> dict[str, str]:
return {"events": ["ev1", "ev2", "ev3"]}