1#![cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] 2 3mod component; 4mod config; 5mod error; 6mod fn_process; 7 8/// Компонент для подключения через websocket server. 9pub mod cmp_websocket_client { 10 pub use crate::{component::Cmp, config::Config}; 11}