ymlin105's picture
chore: remove obsolete files and update project structure
6ad997d
"""Data store subpackage for metadata, online books, and user profiles."""
from .metadata_store import MetadataStore, metadata_store # noqa: F401
from .online_books_store import OnlineBooksStore, online_books_store # noqa: F401
__all__ = [
"MetadataStore",
"metadata_store",
"OnlineBooksStore",
"online_books_store",
]