Исправление ошибок, добавление ИИ-ассистента

This commit is contained in:
2026-02-16 14:43:14 +03:00
parent 5b7ea9276b
commit 213d2bcb5a
18 changed files with 1672 additions and 426 deletions
+10
View File
@@ -0,0 +1,10 @@
"""Пакет middleware"""
from .catch_exception import catch_exception_middleware
from .log_request import log_request_middleware
from .not_found_handler import not_found_handler
__all__ = [
"catch_exception_middleware",
"log_request_middleware",
"not_found_handler",
]