summaryrefslogtreecommitdiff
path: root/makima/src/daemon/ws/protocol.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-03-10 17:33:23 +0000
committerGitHub <noreply@github.com>2026-03-10 17:33:23 +0000
commit3679ceb3325033faa2f889ef3dfee5668ef7aeea (patch)
treea0975085bd9a3ef4a8545cf33c8669c7b51e4efb /makima/src/daemon/ws/protocol.rs
parentf49aaa39a32661b54c109ba002d24cbdf73f4ea3 (diff)
downloadsoryu-3679ceb3325033faa2f889ef3dfee5668ef7aeea.tar.gz
soryu-3679ceb3325033faa2f889ef3dfee5668ef7aeea.zip
feat: soryu-co/soryu - makima: Fix build errors in daemon protocol and task manager (#89)v0.5.0
Diffstat (limited to 'makima/src/daemon/ws/protocol.rs')
-rw-r--r--makima/src/daemon/ws/protocol.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/makima/src/daemon/ws/protocol.rs b/makima/src/daemon/ws/protocol.rs
index 0583783..ced653b 100644
--- a/makima/src/daemon/ws/protocol.rs
+++ b/makima/src/daemon/ws/protocol.rs
@@ -348,6 +348,15 @@ pub enum DaemonMessage {
error: Option<String>,
},
+ /// Response to GetWorktreeDiff command.
+ WorktreeDiffResult {
+ #[serde(rename = "taskId")]
+ task_id: Uuid,
+ success: bool,
+ diff: Option<String>,
+ error: Option<String>,
+ },
+
/// Response to CreateCheckpoint command.
CheckpointCreated {
#[serde(rename = "taskId")]