Files
abogen/abogen/webui/__init__.py
T

10 lines
160 B
Python

__all__ = ["create_app"]
def __getattr__(name: str):
if name == "create_app":
from .app import create_app
return create_app
raise AttributeError(name)