add structure to code

This commit is contained in:
2022-12-05 17:22:23 +10:00
parent c0e0b51dee
commit 31abb3460a
6 changed files with 200 additions and 192 deletions

4
create_bot.py Normal file
View File

@@ -0,0 +1,4 @@
from aiogram import Bot, Dispatcher
API_TOKEN = '5724991559:AAEuLvpLsgP6LHRGMSyFtQLlR5qPQUO4b_w'
bot = Bot(token=API_TOKEN, parse_mode="HTML")
dp = Dispatcher(bot)