Files
neuro-reply-bot-reworked/handlers/message_handlers/start_command.py

12 lines
689 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from aiogram import types
from aiogram.filters import CommandStart
from .handler import MessageHandlerABC
class StartCommand(MessageHandlerABC):
filter = CommandStart()
async def _command(self, message: types.Message):
await message.answer("Добро пожаловать! Данный бот - предложка для канала @neur0w0men. Отправляйте свои пожелания насчет нейрокартинок, а также свои картинки, а админы постараются заняться этим!\nДанный бот принимает текст, картинки, документы и стикеры.")