12 lines
238 B
Kotlin
12 lines
238 B
Kotlin
|
|
package io.heckel.ntfy.firebase
|
||
|
|
|
||
|
|
class FirebaseMessenger {
|
||
|
|
fun subscribe(topic: String) {
|
||
|
|
// Dummy to keep F-Droid flavor happy
|
||
|
|
}
|
||
|
|
|
||
|
|
fun unsubscribe(topic: String) {
|
||
|
|
// Dummy to keep F-Droid flavor happy
|
||
|
|
}
|
||
|
|
}
|