metatext/Mastodon/Sources/Mastodon/API/APIDecoder.swift

16 lines
388 B
Swift
Raw Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
2020-08-31 00:18:19 +00:00
public final class APIDecoder: JSONDecoder {
2020-08-30 23:33:11 +00:00
public override init() {
super.init()
let dateFormatter = DateFormatter()
2020-08-30 23:33:11 +00:00
dateFormatter.dateFormat = Constants.dateFormat
dateDecodingStrategy = .formatted(dateFormatter)
keyDecodingStrategy = .convertFromSnakeCase
}
}