From daa5bb6e2631119eee327cfd5e119e7734fbe51d Mon Sep 17 00:00:00 2001 From: Nathan Nguyen <146415969+NathanDrake2406@users.noreply.github.com> Date: Thu, 12 Mar 2026 19:59:38 +1100 Subject: [PATCH] test: pr-12 state management --- crates/grove-daemon/src/state.rs | 1 + crates/grove-daemon/src/worker.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/crates/grove-daemon/src/state.rs b/crates/grove-daemon/src/state.rs index 7519105..879734b 100644 --- a/crates/grove-daemon/src/state.rs +++ b/crates/grove-daemon/src/state.rs @@ -1,3 +1,4 @@ +// state management use grove_lib::graph::{GraphOverlay, ImportGraph}; use grove_lib::{CommitHash, OrthogonalityScore, Workspace, WorkspaceId, WorkspacePairAnalysis}; use std::collections::{HashMap, HashSet}; diff --git a/crates/grove-daemon/src/worker.rs b/crates/grove-daemon/src/worker.rs index d9ce5d9..35db719 100644 --- a/crates/grove-daemon/src/worker.rs +++ b/crates/grove-daemon/src/worker.rs @@ -1,3 +1,4 @@ +// state management use crate::state::{GroveConfig, StateMessage}; use chrono::Utc; use grove_lib::graph::{ImportGraph, compute_dependency_overlaps};