Офлайн режим, начало

This commit is contained in:
Халимов Рустам
2026-04-20 01:00:35 +03:00
parent 7c66e1c0c0
commit 38e7184a0d
18 changed files with 214 additions and 35 deletions
@@ -7,6 +7,7 @@ import kotlinx.coroutines.flow.Flow
interface ChatRepository {
suspend fun getChats(): List<Chat>
fun getChatsFlow(): Flow<List<Chat>>
// Flow для UI (простой список)
fun getMessagesFlow(chatId: String): Flow<List<Message>>