9 lines
181 B
Swift
9 lines
181 B
Swift
import Foundation
|
|
|
|
public protocol Decoder: Swift.Decoder {
|
|
associatedtype SQLiteData
|
|
|
|
var dateDecoder: any DateDecoder { get }
|
|
var sqliteData: SQLiteData { get }
|
|
}
|