Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/bcli/batch/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""Batch operation ledger (Phase 3 of AIP v0.1).

A durable SQLite ledger that records every batch run's intent + outcome
per step. Survives ``SIGKILL`` because the intent row is written
*before* the HTTP call, and ``PRAGMA synchronous=NORMAL`` keeps WAL
honest at commit time.
"""

from bcli.batch.ledger import Ledger, RunLedgerExistsError # noqa: F401
Loading
Loading