1 2 3 4 5 6 7 8 9
use super::{Repo, RepoError}; use gix::Id; impl Repo { pub fn ffmerge(&self, _a: Id, _b: Id) -> Result<(), RepoError> { Ok(()) } }