pub mod commonjs_to_esm;
pub mod express_to_fastify;
pub mod js_to_ts;
pub mod react_class_to_hooks;
use crate::core::registry::RecipeRegistry;
pub fn register_all(registry: &mut RecipeRegistry) {
registry.register(commonjs_to_esm::CommonJsToEsmRecipe);
registry.register(express_to_fastify::ExpressToFastifyRecipe::new());
registry.register(js_to_ts::JsToTsRecipe::conservative());
registry.register(react_class_to_hooks::ReactClassToHooksRecipe);
}