Skip to content

Commit

Permalink
Fix store init
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason committed Jul 6, 2023
1 parent 3fbaebc commit 3e2a01e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/maggma/stores/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
""" Root store module with easy imports for implemented Stores """
from maggma.core import Store
from maggma.stores.advanced_stores import (
AliasingStore,
MongograntStore,
SandboxStore,
VaultStore,
)
from maggma.stores.aws import S3Store
from maggma.stores.azure import AzureBlobStore
from maggma.stores.compound_stores import ConcatStore, JointStore
from maggma.stores.gridfs import GridFSStore
from maggma.stores.mongolike import JSONStore, MemoryStore, MongoStore, MongoURIStore

__all__ = [
"Store",
"AliasingStore",
"MongograntStore",
"SandboxStore",
"VaultStore",
"S3Store",
"AzureBlobStore",
"ConcatStore",
"JointStore",
"GridFSStore",
"JSONStore",
"MemoryStore",
"MongoStore",
"MongoURIStore",
]

0 comments on commit 3e2a01e

Please sign in to comment.