amiibo-service/Sources/Extensions/DateFormatter+Formatter.swift
Javier Cicchelli e9f08c68da [Improvement] SwiftLibs package update (#22)
This PR contains the work done to update the `swift-libs` package dependency to its latest version, and it also includes the fixes to the references to the **Communication** and **Foundation** libraries.

Reviewed-on: #22
Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
2023-08-14 21:17:31 +00:00

48 lines
1.2 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the AmiiboService open source project
//
// Copyright (c) 2023 Röck+Cöde VoF. and the AmiiboService project authors
// Licensed under the EUPL 1.2 or later.
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of AmiiboService project authors
//
//===----------------------------------------------------------------------===//
import Foundation
import SwiftLibsFoundation
extension DateFormatter {
// MARK: Formatters
static let dateOnly = {
let formatter = DateFormatter()
formatter.timeZone = .gmt
formatter.dateFormat = .Format.yearMonthDay
return formatter
}()
static let dateAndTime = {
let formatter = DateFormatter()
formatter.timeZone = .gmt
formatter.dateFormat = .Format.dateAndTimeWithMicroseconds
return formatter
}()
}
// MARK: - String+Format
private extension String {
enum Format {
static let yearMonthDay = "yyyy-MM-dd"
static let dateAndTimeWithMicroseconds = "yyyy-MM-dd'T'HH:mm:ss.SSS"
}
}