d7a58e52fd
lint / lint (push) Successful in 54s
test / integration-docker (pull_request) Successful in 38s
test / unit (pull_request) Successful in 45s
test / integration-firecracker (pull_request) Successful in 3m31s
test / coverage (pull_request) Successful in 18s
test / publish-infra (pull_request) Has been skipped
tracker-policy-pr / check-pr (pull_request) Failing after 6s
Move the DbStore base (db_store), the shared schema-migration base (migrations / TableMigrations), the concrete stores (audit_store, config_store, queue_store), and StoreManager out of the package root into a bot_bottle/store/ package, so persistence lives in one place rather than scattered across the root. Callers use direct submodule imports (from bot_bottle.store.store_manager import StoreManager). Inside the moved modules the relative imports point back up to their non-store siblings (..paths, ..supervise_types) while co-moved siblings stay package-local; the flat-import fallbacks are untouched. The orchestrator's own stores (config_store, secret_store, registry) stay in orchestrator/ and repoint to the moved DbStore / TableMigrations. No behavior change; full unit suite green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 lines
402 B
Python
10 lines
402 B
Python
"""SQLite-backed persistence for bot-bottle.
|
|
|
|
The store family: a shared `DbStore` base (versioned `migrations`) and the
|
|
concrete stores built on it — `ConfigStore`, `AuditStore`, `QueueStore` — plus
|
|
`StoreManager`, which migrates them together against the one per-host DB.
|
|
|
|
Callers import the concrete module they need directly, e.g.
|
|
`from bot_bottle.store.store_manager import StoreManager`.
|
|
"""
|