diff options
| author | soryu <soryu@soryu.co> | 2026-01-22 22:32:46 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-23 01:03:04 +0000 |
| commit | 1ed362424dafec690f919154f5116471951cda9c (patch) | |
| tree | 19c7ca9231887394a791223fe32a8ad335a687a8 /makima/src/daemon/storage/mod.rs | |
| parent | 265f8cf14fec9d7116d09af49e4b48b357faceda (diff) | |
| download | soryu-1ed362424dafec690f919154f5116471951cda9c.tar.gz soryu-1ed362424dafec690f919154f5116471951cda9c.zip | |
Add patch checkpointing
Diffstat (limited to 'makima/src/daemon/storage/mod.rs')
| -rw-r--r-- | makima/src/daemon/storage/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/makima/src/daemon/storage/mod.rs b/makima/src/daemon/storage/mod.rs new file mode 100644 index 0000000..cc5441a --- /dev/null +++ b/makima/src/daemon/storage/mod.rs @@ -0,0 +1,8 @@ +//! Checkpoint storage for task recovery. +//! +//! This module provides functionality to store and restore git patches +//! in PostgreSQL for recovering task worktrees when they are lost. + +mod patch; + +pub use patch::{create_patch, apply_patch, PatchError}; |
