mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-18 07:18:25 +00:00
10 lines
369 B
Kotlin
10 lines
369 B
Kotlin
package org.thoughtcrime.securesms.loki
|
|
|
|
import org.whispersystems.signalservice.loki.api.PairingAuthorisation
|
|
|
|
interface DeviceLinkingViewDelegate {
|
|
|
|
fun handleDeviceLinkAuthorized(pairingAuthorisation: PairingAuthorisation) { }
|
|
fun handleDeviceLinkingDialogDismissed() { }
|
|
fun sendPairingAuthorizedMessage(pairingAuthorisation: PairingAuthorisation) { }
|
|
} |