aboutsummaryrefslogtreecommitdiff
path: root/src/repo/git/ffmerge.rs
blob: 7f30a4b74b22e7529390b818176e6d56ef45505a (plain)
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(())
    }
}