use std::{path::Path, result::Result};
#[derive(Clone)]
pub struct PdfGenerator;
impl PdfGenerator {
pub fn new() -> Self {
Self
}
pub fn generate(&self, _content: &str, _path: &Path) -> Result<(), std::io::Error> {
Ok(())
}
}
impl Default for PdfGenerator {
fn default() -> Self {
Self::new()
}
}