mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Use hardcoded token as in the other examples (#809)
This commit is contained in:
parent
dd4cc7fbbb
commit
b545a5ff2e
1 changed files with 3 additions and 1 deletions
|
|
@ -7,7 +7,9 @@ from aiogram.dispatcher.webhook import configure_app
|
|||
from aiohttp import web
|
||||
|
||||
|
||||
bot = Bot(token=config.bot_token)
|
||||
API_TOKEN = "BOT_TOKEN_HERE"
|
||||
|
||||
bot = Bot(token=API_TOKEN)
|
||||
dp = Dispatcher(bot)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue