PR Title Check / check-title (pull_request) Successful in 7s
Code Quality Pipeline / code-quality (pull_request) Failing after 19s
Test Python Package / unit-tests (pull_request) Successful in 47s
Test Python Package / integration-tests (pull_request) Successful in 44s
Test Python Package / coverage-report (pull_request) Successful in 11s
Introduce PostgresAdapter for dict-based row CRUD via psycopg3, including config, lazy exports, unit/integration tests with testcontainers, and an example UserTableRepository. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
316 B
Python
12 lines
316 B
Python
from .dotenv_loader import load_dotenv as load_dotenv
|
|
from .minio_config import MinioConfig as MinioConfig
|
|
from .postgres_config import PostgresConfig as PostgresConfig
|
|
from .redis_config import RedisConfig as RedisConfig
|
|
|
|
__all__ = [
|
|
"MinioConfig",
|
|
"PostgresConfig",
|
|
"RedisConfig",
|
|
"load_dotenv",
|
|
]
|