metatext/Mastodon/Sources/Mastodon/Coding/MastodonDecoder.swift
2020-09-03 18:55:46 -07:00

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
}
}