pbj 0.3.1

Command line utility for generating tdd projects from declarative configurations.
Documentation
1
2
3
4
5
6
7
8
use crate::files::BUILT_IN_TEMPLATES;

pub fn built_ins() {
    println!("Built-in templates:");
    for (key, _) in BUILT_IN_TEMPLATES {
        println!("  - {}", key);
    }
}