reify 0.5.8

Write configuration files from templates using env variables
Documentation
1
2
3
4
5
6
7
8
9
use super::ReifyProcessor;

pub struct CopyProcessor;

impl ReifyProcessor for CopyProcessor {
    fn render(&self, source: &str) -> anyhow::Result<String> {
        Ok(String::from(source))
    }
}