- Removed unnecessary `__init__.py` and `Dockerfile` to streamline project organization. - Updated `.dockerignore` and `.gitignore` to improve exclusion patterns for build artifacts and environment files. - Enhanced `Makefile` with new commands for managing Docker containers and added help documentation. - Introduced `pyproject.toml` for better project metadata management and dependency tracking. - Updated `requirements.txt` to reflect changes in dependencies for metrics and monitoring. - Refactored various handler files to improve code organization and maintainability.
15 lines
402 B
Python
15 lines
402 B
Python
"""Constants for group handlers"""
|
||
|
||
from typing import Final, Dict
|
||
|
||
# FSM States
|
||
FSM_STATES: Final[Dict[str, str]] = {
|
||
"CHAT": "CHAT"
|
||
}
|
||
|
||
# Error messages
|
||
ERROR_MESSAGES: Final[Dict[str, str]] = {
|
||
"NO_REPLY_TO_MESSAGE": "Блять, выдели сообщение!",
|
||
"USER_NOT_FOUND": "Не могу найти кому ответить в базе, проебали сообщение."
|
||
}
|