Repository実装

This commit is contained in:
ろむねこ 2023-12-21 14:44:36 +09:00
parent 9fecefeb4e
commit aff7af76d4
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,7 +1,13 @@
package one.nem.lacerta.source.file; package one.nem.lacerta.source.file;
import android.graphics.Bitmap;
import org.eclipse.jgit.lib.Repository;
public interface RepoFileManager { public interface RepoFileManager {
void void initRepoDir();
void addImageByIndex(Bitmap bitmap, int index);
void deleteImageByIndex(int index);
} }