storkit: merge 383_refactor_reorganize_chat_system_into_chat_module_with_transport_submodules

This commit is contained in:
dave
2026-03-24 17:54:51 +00:00
parent 92c53704f0
commit 79edc28334
31 changed files with 89 additions and 87 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
use crate::agents::AgentPool;
use crate::slog;
use crate::transport::ChatTransport;
use crate::chat::ChatTransport;
use std::path::Path;
use std::sync::Arc;
@@ -186,7 +186,7 @@ pub async fn rebuild_and_restart(
mod tests {
use super::*;
use async_trait::async_trait;
use crate::transport::MessageId;
use crate::chat::MessageId;
use std::sync::Mutex;
/// In-memory transport that records sent messages.