huskies: merge 1039

This commit is contained in:
dave
2026-05-14 16:26:49 +00:00
parent 9e06fff8a8
commit 311883f45d
12 changed files with 1005 additions and 5 deletions
+4
View File
@@ -64,6 +64,9 @@ pub(super) fn build_agent_app_context(
let timer_store = Arc::new(crate::service::timer::TimerStore::load(
project_root.join(".huskies").join("timers.json"),
));
let scheduled_timer_store = Arc::new(crate::service::timer::ScheduledTimerStore::load(
project_root.join(".huskies").join("scheduled_timers.json"),
));
let agents = Arc::new(AgentPool::new(port, watcher_tx.clone()));
let services = Arc::new(crate::services::Services {
project_root: project_root.to_path_buf(),
@@ -90,5 +93,6 @@ pub(super) fn build_agent_app_context(
bot_shutdown: None,
matrix_shutdown_tx: None,
timer_store,
scheduled_timer_store,
}
}