From b90ef6a4871f67674ca625fea244255a99f9283b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Thu, 21 Dec 2023 15:13:31 +0900 Subject: [PATCH] =?UTF-8?q?Factory=E4=BD=9C=E6=88=90,=20=E5=AE=9F=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source/file/factory/FileManagerFactory.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 source/src/main/java/one/nem/lacerta/source/file/factory/FileManagerFactory.java diff --git a/source/src/main/java/one/nem/lacerta/source/file/factory/FileManagerFactory.java b/source/src/main/java/one/nem/lacerta/source/file/factory/FileManagerFactory.java new file mode 100644 index 00000000..c4617e85 --- /dev/null +++ b/source/src/main/java/one/nem/lacerta/source/file/factory/FileManagerFactory.java @@ -0,0 +1,11 @@ +package one.nem.lacerta.source.file.factory; + +import java.nio.file.Path; + +import dagger.assisted.AssistedFactory; +import one.nem.lacerta.source.file.FileManager; + +@AssistedFactory +public interface FileManagerFactory { + FileManager create(Path rootDir); +}