7 lines
199 B
Swift
7 lines
199 B
Swift
import Foundation
|
|
|
|
public protocol DateDecoder {
|
|
func decode(from decoder: any ValueDecoder) throws -> Date
|
|
func decode(from decoder: any RowDecoder, for key: any CodingKey) throws -> Date
|
|
}
|