"""
Mock memory module for documentation build.
This module provides mock objects for the memories.core.memory module
to allow documentation to be built without requiring all dependencies.
"""
[docs]class MemoryManager:
"""Mock memory manager for documentation."""
[docs] def __init__(self, *args, **kwargs):
"""Initialize the mock memory manager."""
pass
[docs] def initialize(self, *args, **kwargs):
"""Initialize memory systems."""
pass
[docs] def store(self, *args, **kwargs):
"""Store data in memory."""
pass
[docs] def retrieve(self, *args, **kwargs):
"""Retrieve data from memory."""
pass