mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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…
Reference in New Issue
Block a user