fleet-memory/memora/web/__init__.py
Nicolò Boschi 18c7e0845b fix web init
2025-11-07 12:47:50 +01:00

15 lines
392 B
Python

"""
Web interface for memory system.
Provides FastAPI app and visualization interface.
"""
from .server import create_app
# Lazy import of app to avoid initialization issues
def __getattr__(name):
if name == "app":
from .server import _get_app
return _get_app()
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
__all__ = ["app", "create_app"]