metatext/Mastodon/Sources/Mastodon/Networking/Mastodon API/APIDecoder.swift
Justin Mazzocchi f93105d2bf
Cleanup
2020-08-30 17:18:19 -07:00

16 lines
388 B
Swift

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