mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
10 lines
160 B
Python
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)
|