//! Library exports for integration testing.
//!
//! The production entry point remains `src/main.rs`. This library module only
//! re-exports components needed by Linux integration tests.
mod rpc;
#[cfg(target_os = "linux")]
pub mod config;
pub mod dns;
pub mod dns_server;
#[cfg(target_os = "linux")]
pub mod error;
#[cfg(target_os = "linux")]
pub mod rootfs_builder;
#[cfg(target_os = "linux")]
pub mod sandbox;