9 lines
258 B
Python
9 lines
258 B
Python
__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}")
|