from aiogram import types, Dispatcher, executor, Bot
TOKEN = " "
bot = Bot(TOKEN)
dp = Dispatcher(bot)
@dp.message_handler(text='hello') # text='hello' Здесь укажи на какой текст должен отвечать бот
async def start(message: types.Message):
await bot.send_message(message.chat.id, 'jojo')
if __name__ == '__main__':
executor.start_polling(dp)