This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ASF-Control-Bot/bot/states.py
T

14 lines
227 B
Python

from aiogram.fsm.state import State, StatesGroup
class ConsoleFlow(StatesGroup):
waiting_command = State()
class RedeemFlow(StatesGroup):
waiting_all_keys = State()
waiting_bot_keys = State()
twofa_tasks = {}