8 lines
153 B
Python
8 lines
153 B
Python
"""
|
|
Web interface for memory system.
|
|
|
|
Provides FastAPI app and visualization interface.
|
|
"""
|
|
from .server import app, memory
|
|
|
|
__all__ = ["app", "memory"]
|