session-ios/Signal/src/Loki/Settings/DeviceLinkingModalDelegate.swift

11 lines
245 B
Swift
Raw Normal View History

2019-09-24 03:59:17 +02:00
@objc protocol DeviceLinkingModalDelegate {
2019-09-24 03:59:17 +02:00
func handleDeviceLinkAuthorized(_ deviceLink: DeviceLink)
}
extension DeviceLinkingModalDelegate {
func handleDeviceLinkAuthorized(_ deviceLink: DeviceLink) { /* Do nothing */ }
2019-09-24 03:59:17 +02:00
}