chat_moderator_bot/core.py

9 lines
111 B
Python
Raw Permalink Normal View History

2024-07-17 20:35:45 +00:00
from aiogram import Bot
from config import BOT_TOKEN
bot = Bot(
token=BOT_TOKEN,
parse_mode="HTML"
)