Function stat

Source
pub fn stat(path: impl AsRef<Path>) -> Result<Remote>
Expand description

Find out what the GitHub url, user and repo are for a directory

Examples found in repository?
examples/main.rs (line 4)
3fn main() {
4  let res = github_local_remote::stat(".").unwrap();
5  println!("result {:?}", res);
6}