1use std::path::PathBuf; 2 3pub fn get_next_version(_path: PathBuf) -> Result<String, ()> { 4 Err(()) // Not yet implemented 5}