diff options
| author | soryu <soryu@soryu.co> | 2026-03-10 17:33:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-10 17:33:23 +0000 |
| commit | 3679ceb3325033faa2f889ef3dfee5668ef7aeea (patch) | |
| tree | a0975085bd9a3ef4a8545cf33c8669c7b51e4efb /makima/src/daemon/ws/protocol.rs | |
| parent | f49aaa39a32661b54c109ba002d24cbdf73f4ea3 (diff) | |
| download | soryu-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.rs | 9 |
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")] |
