isort
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
from aiogram import Bot, Dispatcher, Router
|
||||
from aiogram.fsm.storage.memory import MemoryStorage
|
||||
from config import API_TOKEN
|
||||
|
||||
from auth import login_with_credentials
|
||||
from config import API_TOKEN
|
||||
|
||||
bot = Bot(token=API_TOKEN)
|
||||
storage = MemoryStorage()
|
||||
dp = Dispatcher(bot=bot, storage=storage)
|
||||
router = Router()
|
||||
|
||||
from handlers import start, profile, keys, balance, pay
|
||||
from handlers import balance, keys, pay, profile, start
|
||||
from key_management import router as key_management_router
|
||||
|
||||
|
||||
# Регистрация обработчиков
|
||||
dp.include_router(start.router)
|
||||
dp.include_router(profile.router)
|
||||
|
||||
Reference in New Issue
Block a user