#![no_std]
#![forbid(unsafe_code)]
#![doc = "Facade for independently publishable Netherlands crates."]
pub use netherlands_core as core;
#[cfg(test)]
mod tests {
#[test]
fn facade_always_exposes_core() {
let id = crate::core::SourceId::reviewed("netherlands");
assert_eq!(id.as_str(), "netherlands");
}
}