use std::result::Result;
#[derive(Clone)]
pub struct StaticProcessor;
impl StaticProcessor {
pub fn new() -> Self {
Self
}
pub fn process(&self) -> Vec<(String, String)> {
Vec::new()
}
pub fn copy_static_files(&self, _input_dir: &String, _output_dir: &String) -> Result<(), std::io::Error> {
Ok(())
}
}
impl Default for StaticProcessor {
fn default() -> Self {
Self::new()
}
}