metatext/Mastodon/Sources/Mastodon/Networking/Mastodon API/MastodonDecoder.swift
Justin Mazzocchi 9b59e2fbea
wip
2020-08-30 16:33:32 -07:00

16 lines
387 B
Swift

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