mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-26 18:11:06 +00:00
12 lines
348 B
Swift
12 lines
348 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Combine
|
||
|
import ServiceLayer
|
||
|
|
||
|
public extension UserNotificationClient {
|
||
|
static let mock = UserNotificationClient(
|
||
|
getNotificationSettings: { _ in },
|
||
|
requestAuthorization: { _, _ in },
|
||
|
delegateEvents: Empty(completeImmediately: false).eraseToAnyPublisher())
|
||
|
}
|