package cn.seecoder.paas.service.facade.git; import org.eclipse.jgit.api.Git; import org.eclipse.jgit.api.errors.GitAPIException; public interface GitApi { Git clone(String repoUrl, String directory) throws Exception; }