diff --git a/src/main.rs b/src/main.rs index 581e3500..1224f295 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,8 +9,8 @@ use ironclaw::{ agent::{Agent, AgentDeps}, app::{AppBuilder, AppBuilderFlags}, channels::{ - ChannelManager, ChannelSecretUpdater, GatewayChannel, HttpChannel, ReplChannel, - SignalChannel, WebhookServer, WebhookServerConfig, + ChannelManager, GatewayChannel, HttpChannel, ReplChannel, SignalChannel, WebhookServer, + WebhookServerConfig, wasm::{WasmChannelRouter, WasmChannelRuntime}, web::log_layer::LogBroadcaster, }, @@ -682,6 +682,7 @@ async fn async_main() -> anyhow::Result<()> { #[cfg(unix)] { + use ironclaw::channels::ChannelSecretUpdater; // Collect all channels that support secret updates let mut secret_updaters: Vec> = Vec::new(); if let Some(ref state) = http_channel_state {