5 lines
139 B
Python
5 lines
139 B
Python
from .base import BaseDocumentStore
|
|
from .in_memory import InMemoryDocumentStore
|
|
|
|
__all__ = ["BaseDocumentStore", "InMemoryDocumentStore"]
|