//! This module provides a helper function that
//! sets up the panic handler so that unrecoverable
//! errors from the provider show better messages.
usefiberplane_provider_bindings::log;usestd::panic;pubfninit_panic_hook(){usestd::sync::Once;staticSET_HOOK: Once =Once::new();SET_HOOK.call_once(||{panic::set_hook(Box::new(|info|log(format!("Provider panic: {info}"))));});}