#[cfg(all(feature = "jemalloc", unix))]
use jemallocator::Jemalloc;
#[cfg(all(feature = "jemalloc", unix))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
pub mod certificates;
pub mod config;
pub mod constants;
pub mod error;
pub mod ip_assignment;
pub mod network;
pub mod utils;
pub use error::{QuincyError, Result};