rsiot_surrealdb/
lib.rs

1#![cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7
8pub use component::Cmp;
9pub use config::{Config, InputConfig};
10pub use error::Error;
11
12type Result<T> = std::result::Result<T, Error>;