1use anyhow::{bail, Result}; 2use git2::Repository; 3 4pub fn clone_repo(_url: &str, _path: &std::path::Path) -> Result<Repository> { 5 // TODO: support ssh/https and depth 6 bail!("clone_repo not implemented") 7}