use std::{ collections::HashSet, result::Result as stdResult, }; use tokio::sync::Mutex; pub mod config; pub mod cryptography; pub mod dns; mod foreign_impl; pub mod structs; pub mod traits; /// Alias for Vec\ pub type VString = Vec; /// Alias for an Safe Hashset pub type SafeSet = Mutex>; pub type Result = stdResult;