12 lines
276 B
Python
12 lines
276 B
Python
from __future__ import annotations
|
|
|
|
__all__ = ["CheckAddyApp"]
|
|
|
|
|
|
def __getattr__(name: str) -> object:
|
|
if name == "CheckAddyApp":
|
|
from .app import CheckAddyApp
|
|
|
|
return CheckAddyApp
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|