NotebookLMClone / src /ingestion /__init__.py
github-actions[bot]
Sync from GitHub e48aa5f27523b35a22c1a01acbb2b835cdc28984
aacd162
raw
history blame contribute delete
188 Bytes
"""Ingestion package.
Exports the storage adapter for local development.
"""
from .storage import StorageAdapter, LocalStorageAdapter
__all__ = ["StorageAdapter", "LocalStorageAdapter"]