pub fn list_available_changes(ito_path: &Path) -> Vec<String>Expand description
List change directory names under the .ito/changes directory.
Each element is the change directory name (not a full path).
ยงExamples
use std::path::Path;
let names = ito_core::templates::list_available_changes(Path::new("."));
// `names` is a `Vec<String>` of change directory names