fleet-memory/memora/web/__init__.py
Nicolò Boschi 7d8d07d1aa memora
2025-11-03 20:10:11 +01:00

8 lines
153 B
Python

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