From 1ed362424dafec690f919154f5116471951cda9c Mon Sep 17 00:00:00 2001 From: soryu Date: Thu, 22 Jan 2026 22:32:46 +0000 Subject: Add patch checkpointing --- makima/src/daemon/storage/mod.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 makima/src/daemon/storage/mod.rs (limited to 'makima/src/daemon/storage/mod.rs') 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}; -- cgit v1.2.3