1#[macro_export] 2macro_rules! load_module_from_build { 3 ($name:literal) => { 4 include_bytes!(env!(concat!("FLAWLESS_UTIL_BUILD_", $name))) 5 }; 6}