__all__ = ["RealPlatformClient"] def __getattr__(name: str): if name == "RealPlatformClient": from sdk.real import RealPlatformClient return RealPlatformClient raise AttributeError(f"module {__name__!r} has no attribute {name!r}")