mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-04-16 13:10:50 +00:00
モジュール実装
This commit is contained in:
parent
31799218a9
commit
efb4a9f8a2
@ -1,4 +1,16 @@
|
|||||||
package one.nem.lacerta.data.module;
|
package one.nem.lacerta.data.module;
|
||||||
|
|
||||||
public class DocumentDebugModule {
|
import dagger.Binds;
|
||||||
|
import dagger.Module;
|
||||||
|
import dagger.hilt.InstallIn;
|
||||||
|
import dagger.hilt.components.SingletonComponent;
|
||||||
|
import one.nem.lacerta.data.DocumentDebug;
|
||||||
|
import one.nem.lacerta.data.impl.DocumentDebugImpl;
|
||||||
|
|
||||||
|
@Module
|
||||||
|
@InstallIn(SingletonComponent.class) // TODO-rca: Singletonでいいのか検討する
|
||||||
|
abstract public class DocumentDebugModule {
|
||||||
|
|
||||||
|
@Binds
|
||||||
|
public abstract DocumentDebug bindDocumentDebug(DocumentDebugImpl documentDebugImpl);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user