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