yaml/
yaml.rs

1mod template;
2
3fn main() {
4    let template = template::template().yaml();
5
6    println!("{}", template);
7}