1#[macro_export] 2macro_rules! register_functions { 3 ( $($fn:path),+ $(,)? ) => {{ 4 use std::sync::Arc; 5 $( 6 $crate::function_registry::register_function(Arc::new($fn)); 7 )+ 8 }}; 9}