Revert "feat(network): enhance connectivity monitoring with request reporting"

This reverts commit 56a2b42434.
This commit is contained in:
2026-05-25 17:59:01 +02:00
parent 285fda9caf
commit 1dedc7ff0a
3 changed files with 9 additions and 80 deletions

View File

@@ -4,8 +4,4 @@ import kotlinx.coroutines.flow.Flow
interface NetworkMonitor {
val isOnline: Flow<Boolean>
fun reportRequestSucceeded()
fun reportRequestFailed(error: Throwable)
}