mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
Impl WIP
This commit is contained in:
parent
801d7e0737
commit
72163182a0
|
@ -1,4 +1,29 @@
|
|||
package one.nem.lacerta.source.jgit.impl;
|
||||
|
||||
public class ManageRepoImpl {
|
||||
import one.nem.lacerta.source.jgit.ManageRepo;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
import org.eclipse.jgit.lib.Repository;
|
||||
public class ManageRepoImpl implements ManageRepo {
|
||||
|
||||
@Override
|
||||
public Repository getRepository(String id) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Repository createRepository(String id) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteRepository(String id) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean repositoryExists(String id) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user