1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-25 13:09:01 +01:00

12 lines
348 B
Swift
Raw Normal View History

2020-09-01 00:33:49 -07:00
// 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())
}