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); } }