7 lines
186 B
Python
7 lines
186 B
Python
from aiogram.dispatcher.filters.state import StatesGroup, State
|
|
|
|
class CheckoutState(StatesGroup):
|
|
check_cart = State()
|
|
name = State()
|
|
address = State()
|
|
confirm = State() |