session-android/app/src/website/kotlin/org/thoughtcrime/securesms/notifications/NoOpTokenFetcher.kt

10 lines
232 B
Kotlin
Raw Normal View History

2023-08-07 02:20:51 +02:00
package org.thoughtcrime.securesms.notifications
import javax.inject.Inject
import javax.inject.Singleton
@Singleton
class NoOpTokenFetcher @Inject constructor() : TokenFetcher {
2023-08-17 06:32:22 +02:00
override suspend fun fetch(): String? = null
2023-08-07 02:20:51 +02:00
}