__init__.py
- Pfad:
/var/www/mcp-servers/mcp-docs/infrastructure/__init__.py - Namespace: -
- Zeilen: 16 | Größe: 369 Bytes
- Geändert: 2025-12-28 12:37:22 | Gescannt: 2025-12-31 10:22:15
Code Hygiene Score: 100
- Dependencies: 100 (25%)
- LOC: 100 (20%)
- Methods: 100 (20%)
- Secrets: 100 (15%)
- Classes: 100 (10%)
- Magic Numbers: 100 (10%)
Keine Issues gefunden.
Dependencies 5
- use shared.infrastructure.ProtokollLogger
- use shared.infrastructure.SimpleDbConnection
- use shared.infrastructure.get_logger
- use infrastructure.docs_repository.DocsRepository
- use infrastructure.docs_repository.get_repository
Code
"""Infrastructure Layer für MCP-Docs Server."""
# Shared components
from shared.infrastructure import ProtokollLogger, SimpleDbConnection, get_logger
# Docs-specific
from infrastructure.docs_repository import DocsRepository, get_repository
__all__ = [
"SimpleDbConnection",
"ProtokollLogger",
"get_logger",
"DocsRepository",
"get_repository",
]