Renamed modules to be package specific (#166)

This commit is contained in:
Ramsey Smith
2023-10-26 13:07:47 -06:00
committed by GitHub
parent 4c866e62f2
commit 4cd4110e89
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