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};