chore: Added __init__ files, added fallback for callbacks, refactoring & improvements

This commit is contained in:
ITQ
2024-05-19 16:24:19 +03:00
parent b51c135b14
commit 4bc3025ab4
12 changed files with 291 additions and 138 deletions
+17
View File
@@ -0,0 +1,17 @@
__all__ = (
"start_command",
"help_command",
"menu_command",
"profile_command",
"create_travel_command",
"travels_command",
)
from app.handlers import (
create_travel_command,
help_command,
menu_command,
profile_command,
start_command,
travels_command,
)