pub trait TemplateEngine {
// Required method
fn render(&self, template: &str) -> String;
}Expand description
Unified template engine trait for all template rendering This provides a consistent interface for rendering templates with various placeholders