This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import GRDB | |
// MARK: - DB main class | |
public final class AppDatabase: Sendable { | |
public let dbWriter: any DatabaseWriter | |
public init(_ dbWriter: any GRDB.DatabaseWriter) throws { | |
self.dbWriter = dbWriter |