Define split JSON and object repository ABCs, promote adapter methods to public CRUD, add example domain repositories, modernize interface stubs, and make the package installable for tests. Co-authored-by: Cursor <[email protected]>
18 lines
530 B
Python
18 lines
530 B
Python
from .connection_aware_interface import (
|
|
ConnectionAwareInterface as ConnectionAwareInterface,
|
|
)
|
|
from .context_aware_interface import ContextAwareInterface as ContextAwareInterface
|
|
from .json_repository_interface import (
|
|
JsonRepositoryInterface as JsonRepositoryInterface,
|
|
)
|
|
from .object_repository_interface import (
|
|
ObjectRepositoryInterface as ObjectRepositoryInterface,
|
|
)
|
|
|
|
__all__ = [
|
|
"ConnectionAwareInterface",
|
|
"ContextAwareInterface",
|
|
"JsonRepositoryInterface",
|
|
"ObjectRepositoryInterface",
|
|
]
|