Renamed modules to be package specific (#166)

This commit is contained in:
Ramsey Smith 2023-10-26 13:07:47 -06:00 committed by Álison Fernandes
parent 865a99fd67
commit 4ce7e0842b
8 changed files with 8 additions and 8 deletions

View file

@ -15,7 +15,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object DiskModule {
object AuthDiskModule {
@Provides
@Singleton

View file

@ -20,7 +20,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object NetworkModule {
object AuthNetworkModule {
@Provides
@Singleton

View file

@ -14,7 +14,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object SdkModule {
object AuthSdkModule {
@Provides
@Singleton

View file

@ -19,7 +19,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object RepositoryModule {
object AuthRepositoryModule {
@Provides
@Singleton

View file

@ -15,7 +15,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object DiskModule {
object PlatformDiskModule {
@Provides
@Singleton

View file

@ -24,7 +24,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object NetworkModule {
object PlatformNetworkModule {
@Provides
@Singleton

View file

@ -20,7 +20,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object RepositoryModule {
object PlatformRepositoryModule {
@Provides
@Singleton

View file

@ -14,7 +14,7 @@ import javax.inject.Singleton
*/
@Module
@InstallIn(SingletonComponent::class)
object NetworkModule {
object VaultNetworkModule {
@Provides
@Singleton