huskies: merge 762

This commit is contained in:
dave
2026-04-28 01:27:00 +00:00
parent de5b585157
commit 0d14fffe1c
6 changed files with 253 additions and 2 deletions
+4
View File
@@ -71,6 +71,9 @@ pub fn spawn_bot(
gateway_projects: Vec<String>,
gateway_project_urls: std::collections::BTreeMap<String, String>,
timer_store: Arc<TimerStore>,
gateway_event_rx: Option<
tokio::sync::broadcast::Receiver<crate::service::gateway::GatewayStatusEvent>,
>,
) -> Option<tokio::task::AbortHandle> {
let config = match BotConfig::load(project_root) {
Some(c) => c,
@@ -109,6 +112,7 @@ pub fn spawn_bot(
gateway_projects,
gateway_project_urls,
timer_store,
gateway_event_rx,
)
.await
{