Сборка перед кэшированием

This commit is contained in:
Халимов Рустам
2026-04-23 01:31:51 +03:00
parent 945134f029
commit d9a20e40b0
42 changed files with 16 additions and 185 deletions
+1 -3
View File
@@ -4,7 +4,6 @@ import chats.data.remote.api.ChatApi
import chats.data.remote.signalr.ChatHubClient
import chats.data.repository.ChatRepositoryImpl
import chats.domain.repository.ChatRepository
import core.database.data.MessageDao
import core.network.ServerConfig
import core.security.TokenManager
import dagger.Module
@@ -30,10 +29,9 @@ object ChatModule {
api: ChatApi,
tokenManager: TokenManager,
serverConfig: ServerConfig,
messageDao: MessageDao,
hubClient: chats.data.remote.signalr.ChatHubClient
): ChatRepository {
return ChatRepositoryImpl(api, tokenManager, serverConfig, messageDao, hubClient)
return ChatRepositoryImpl(api, tokenManager, serverConfig, hubClient)
}
@Provides