6 lines
174 B
Python
6 lines
174 B
Python
"""Core application package for the ENGIN diagnostic console."""
|
|
|
|
from .service import DiagnosticService, DiagnosisResult
|
|
|
|
__all__ = ["DiagnosticService", "DiagnosisResult"]
|