Split GoogleFcmHelper

This commit is contained in:
Benoit Marty 2023-04-07 22:08:57 +02:00 committed by Benoit Marty
parent 21a07fda07
commit 0126c7ddc1
8 changed files with 148 additions and 108 deletions

View file

@ -28,4 +28,9 @@ interface PushProvider {
val index: Int
fun getDistributorNames(): List<String>
suspend fun registerWith(matrixClient: MatrixClient, distributorName: String)
/**
* Attempt to troubleshoot the push provider
*/
suspend fun troubleshoot(): Result<Unit>
}