data-raft/Sources/DataRaft/Extensions/NotificationCenter.swift
Oleksii Zghurskyi 5bbb722b20 Refactoring
2025-11-09 15:58:05 +02:00

9 lines
347 B
Swift

import Foundation
public extension NotificationCenter {
/// The notification center dedicated to database events.
///
/// Use this instance to post and observe notifications related to database lifecycle and
/// operations instead of using the shared `NotificationCenter.default`.
static let database = NotificationCenter()
}