use crate::errors::Result;
use std::path::Path;
pub struct NargoGit;
impl NargoGit {
pub fn get_status(_path: &Path) -> Result<Vec<(String, String)>> {
Ok(vec![])
}
pub fn get_current_branch(_path: &Path) -> Result<String> {
Ok("main".to_string())
}
}