15 lines
321 B
Python
15 lines
321 B
Python
from aiogram_dialog import Dialog, Window
|
|
from aiogram_dialog.widgets.text import Format
|
|
|
|
from app.bot.dialogs.widgets.getters import username_getter
|
|
|
|
from .states import StartSG
|
|
|
|
start_dialog = Dialog(
|
|
Window(
|
|
Format("Hello, {username}"),
|
|
getter=username_getter,
|
|
state=StartSG.start,
|
|
)
|
|
)
|