Spaces:
Build error
Build error
File size: 345 Bytes
c75f6b6 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Stack Doctor environment server components."""
from .stack_doctor_environment import StackDoctorEnvironment
__all__ = ["StackDoctorEnvironment"]
def get_mcp_environment():
"""Lazy import of MCP environment (requires fastapi/uvicorn)."""
from .stack_doctor_mcp import StackDoctorMCPEnvironment
return StackDoctorMCPEnvironment
|