summaryrefslogtreecommitdiff
path: root/makima/daemon/src/lib.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-01-11 05:52:14 +0000
committersoryu <soryu@soryu.co>2026-01-15 00:21:16 +0000
commit87044a747b47bd83249d61a45842c7f7b2eae56d (patch)
treeef2000ce79ffcc2723ef841acef5aa1deb1d5378 /makima/daemon/src/lib.rs
parent077820c4167c168072d217a1b01df840463a12a8 (diff)
downloadsoryu-87044a747b47bd83249d61a45842c7f7b2eae56d.tar.gz
soryu-87044a747b47bd83249d61a45842c7f7b2eae56d.zip
Contract system
Diffstat (limited to 'makima/daemon/src/lib.rs')
-rw-r--r--makima/daemon/src/lib.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/makima/daemon/src/lib.rs b/makima/daemon/src/lib.rs
deleted file mode 100644
index 9555681..0000000
--- a/makima/daemon/src/lib.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-//! Makima Daemon - Git worktree orchestration for Claude Code.
-//!
-//! This daemon runs on worker machines and:
-//! - Connects to the makima server via WebSocket
-//! - Creates git worktrees for task isolation
-//! - Runs Claude Code CLI as subprocesses in worktrees
-//! - Streams JSON output back to server
-
-pub mod cli;
-pub mod config;
-pub mod db;
-pub mod error;
-pub mod process;
-pub mod task;
-pub mod temp;
-pub mod worktree;
-pub mod ws;
-
-pub use cli::Cli;
-pub use config::DaemonConfig;
-pub use error::{DaemonError, Result};