Module実装

This commit is contained in:
ろむねこ 2023-12-14 10:19:12 +09:00
parent 960f159a31
commit 2cf3898f65
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,4 +1,16 @@
package one.nem.lacerta.utils.module;
public class SharedPrefUtilsModule {
import dagger.Binds;
import dagger.Module;
import dagger.hilt.InstallIn;
import dagger.hilt.components.SingletonComponent;
import one.nem.lacerta.utils.repository.SharedPrefUtils;
import one.nem.lacerta.utils.impl.SharedPrefUtilsImpl;
@Module
@InstallIn(SingletonComponent.class) // TODO-rca: Singletonである必要があるのか検討する?
abstract class SharedPrefUtilsModule {
@Binds
public abstract SharedPrefUtils bindSharedPrefUtils(SharedPrefUtilsImpl sharedPrefUtilsImpl);
}