9 lines
149 B
Python
9 lines
149 B
Python
# Aiogram imports
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class MainStates(StatesGroup):
|
|
|
|
main = State()
|
|
waiting_amount = State()
|