1 2 3 4 5 6 7 8 9
mod common; #[cfg(target_arch = "x86_64")] mod x86_64; #[cfg(target_arch = "aarch64")] mod aarch64; pub use common::Mocker;