mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
16 lines
248 B
Plaintext
16 lines
248 B
Plaintext
|
|
struct User: Codable {
|
|
|
|
enum CodingKeys: CodingKey {
|
|
}
|
|
|
|
init(from decoder: any Decoder) throws {
|
|
|
|
}
|
|
|
|
func encode(to encoder: any Encoder) throws {
|
|
var container = encoder.container(keyedBy: User.CodingKeys.self)
|
|
|
|
}
|
|
}
|