# retoor <retoor@molodetz.nl>
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
__all__ = ["MolouptimeService"]
|
|
|
|
|
|
def __getattr__(name: str) -> Any:
|
|
if name == "MolouptimeService":
|
|
from .service import MolouptimeService
|
|
|
|
return MolouptimeService
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|