1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-11-21 15:53:47 +00:00

build fix

This commit is contained in:
InsanusMokrassar 2024-09-25 21:20:53 +06:00
parent c3a3e9bd44
commit ce84e3c198

View File

@ -2,11 +2,10 @@ package dev.inmo.tgbotapi.extensions.utils
import dev.inmo.micro_utils.coroutines.safely
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.channels.BroadcastChannel
import kotlinx.coroutines.flow.*
/**
* Analog of [merge] function for [Flow]s. The difference is in the usage of [BroadcastChannel] in this case
* Analog of [merge] function for [Flow]s. The difference is in the usage of [MutableSharedFlow] in this case
*/
fun <T> aggregateFlows(
withScope: CoroutineScope,