fleet-memory/memora/web/__init__.py
2025-11-03 20:57:06 +01:00

8 lines
161 B
Python

"""
Web interface for memory system.
Provides FastAPI app and visualization interface.
"""
from .server import app, create_app
__all__ = ["app", "create_app"]