use std::sync::Arc; use nomifun_system::ClientPrefService; use crate::shell::ShellService; use crate::stt::SttService; #[derive(Clone)] pub struct ShellRouterState { pub shell_service: Arc, pub stt_service: Arc, pub client_pref_service: ClientPrefService, }