ntfy-android/app/src/fdroid/java/io/heckel/ntfy/firebase/FirebaseMessenger.kt

13 lines
268 B
Kotlin
Raw Permalink Normal View History

2021-11-25 10:12:51 +13:00
package io.heckel.ntfy.firebase
2022-12-07 10:17:05 +13:00
@Suppress("UNUSED_PARAMETER")
2021-11-25 10:12:51 +13:00
class FirebaseMessenger {
fun subscribe(topic: String) {
// Dummy to keep F-Droid flavor happy
}
fun unsubscribe(topic: String) {
// Dummy to keep F-Droid flavor happy
}
}