use std::path::Path; use serde::Serialize; use crate::config::Config; use crate::error::CustomError; use crate::intermediate::IDynamicBlock; #[derive(Debug, Serialize)] #[serde(tag = "type")] #[serde(rename = "dynamic_block")] pub(crate) struct RenderDynamicBlock {} impl RenderDynamicBlock { pub(crate) fn new( config: &Config, output_directory: &Path, output_file: &Path, original: &IDynamicBlock, ) -> Result { Ok(RenderDynamicBlock {}) } }