7 lines
146 B
Python
7 lines
146 B
Python
|
from aiogram.types import Message
|
||
|
from app import views
|
||
|
|
||
|
|
||
|
async def start_command(message: Message):
|
||
|
await message.answer(views.start_text())
|