This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aiogram import Bot, Dispatcher, types | |
from aiohttp import web | |
API_TOKEN = 'BOT_TOKEN' | |
# for run xtunnel https: | |
# xtunnel 3000 | |
WEBHOOK_URL = 'https://xtunnel_link_here/webhook' # Замените на ваш URL | |
bot = Bot(token=API_TOKEN) | |
dp = Dispatcher() |