metatext-app-ios-iphone-ipad/Mastodon/Sources/Mastodon/Coding/MastodonDecoder.swift

16 lines
393 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public final class MastodonDecoder: JSONDecoder {
public override init() {
super.init()
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = Constants.dateFormat
dateDecodingStrategy = .formatted(dateFormatter)
keyDecodingStrategy = .convertFromSnakeCase
}
}