20 lines
373 B
Swift
20 lines
373 B
Swift
//
|
|
// Formatters.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 12.06.2024.
|
|
// Copyright © 2024 Selim Mustafaev. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct Formatters {
|
|
|
|
public static let standard: DateFormatter = {
|
|
let f = DateFormatter()
|
|
f.dateStyle = .medium
|
|
f.timeStyle = .medium
|
|
return f
|
|
}()
|
|
}
|