path_example/
path_example.rs

1use last_git_commit::LastGitCommit;
2
3fn main() {
4
5    let lgc = LastGitCommit::new().build().unwrap();
6    let path = lgc.path();
7
8    println!("Path: {:?}", path); // "."
9
10}