You've already forked Travel-Agent
10 lines
182 B
Python
10 lines
182 B
Python
__all__ = ()
|
|
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class TravelCreationState(StatesGroup):
|
|
error_message_id = State()
|
|
title = State()
|
|
description = State()
|