You've already forked Travel-Agent
20 lines
410 B
Python
20 lines
410 B
Python
__all__ = ()
|
|
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class TravelCreationState(StatesGroup):
|
|
error_message_id = State()
|
|
title = State()
|
|
description = State()
|
|
|
|
|
|
class TravelAlteringState(StatesGroup):
|
|
travel_message_id = State()
|
|
input_message_id = State()
|
|
error_message_id = State()
|
|
successfully = State()
|
|
travel_id = State()
|
|
column = State()
|
|
value = State()
|