PR Title Check / check-title (pull_request) Successful in 9s
Code Quality Pipeline / code-quality (pull_request) Failing after 53s
Test Python Package / unit-tests (pull_request) Successful in 1m1s
Test Python Package / integration-tests (pull_request) Successful in 1m44s
Test Python Package / coverage-report (pull_request) Successful in 13s
Provide a generic disk-backed FIFO queue with configurable path, retention, and dedup keys so consumers can buffer items across restarts without optional extras. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
798 B
Python
26 lines
798 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,
|
|
)
|
|
from .queue_repository_interface import (
|
|
QueueRepositoryInterface as QueueRepositoryInterface,
|
|
)
|
|
from .table_repository_interface import (
|
|
TableRepositoryInterface as TableRepositoryInterface,
|
|
)
|
|
|
|
__all__ = [
|
|
"ConnectionAwareInterface",
|
|
"ContextAwareInterface",
|
|
"JsonRepositoryInterface",
|
|
"ObjectRepositoryInterface",
|
|
"QueueRepositoryInterface",
|
|
"TableRepositoryInterface",
|
|
]
|