__init__.py
- Pfad:
/var/www/mcp-servers/mcp-docs/domain/__init__.py - Namespace: -
- Zeilen: 9 | Größe: 230 Bytes
- Geändert: 2025-12-28 12:36:56 | 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 3
- use domain.dokumentation.DocStatus
- use domain.dokumentation.Dokumentation
- use shared.domain.LogEntry
Code
"""Domain Layer für MCP-Docs Server."""
from domain.dokumentation import DocStatus, Dokumentation
# LogEntry comes from shared foundation
from shared.domain import LogEntry
__all__ = ["Dokumentation", "DocStatus", "LogEntry"]