archetect-core 0.7.3

Generates Content from Archetype Template Directories and Git Repositories.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(test)]
pub mod testing {
    pub fn strip_newline(input: &str) -> &str {
        input
            .strip_suffix("\r\n")
            .or(input.strip_suffix("\n"))
            .unwrap_or(input)
    }
}