feat: Added travel models, travel creation command, travels list command with pagination, set help message, improvements and fixes

This commit is contained in:
ITQ
2024-03-23 02:47:05 +03:00
parent 675e5ab891
commit 1802ce81b0
15 changed files with 623 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
__all__ = ()
from aiogram.fsm.state import State, StatesGroup
class TravelCreationState(StatesGroup):
error_message_id = State()
title = State()
description = State()