mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2024-11-16 03:06:33 +03:00
7 lines
190 B
Python
7 lines
190 B
Python
from aiogram.types import Message
|
|
from loguru import logger
|
|
|
|
|
|
async def start_cmd(msg: Message):
|
|
logger.info(f"{msg.from_user.full_name} send /start")
|
|
await msg.answer("Basic reply") |