summaryrefslogtreecommitdiff
path: root/makima/src/daemon/storage/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/daemon/storage/mod.rs')
-rw-r--r--makima/src/daemon/storage/mod.rs8
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};