python_bot_v2/create_bot.py
2024-01-21 22:36:34 +10:00

8 lines
153 B
Python

from aiogram import Bot, Dispatcher
from global_conf import CONFIG
bot = Bot(token=CONFIG['telegram_token'], parse_mode="HTML")
dp = Dispatcher(bot)