Files
sing-box-for-apple/Library/Database/Profile+Date.swift
T
2023-07-15 15:03:45 +08:00

17 lines
328 B
Swift

//
// Profile+Date.swift
// Library
//
// Created by 世界 on 2023/6/29.
//
import Foundation
public extension Profile {
var lastUpdatedString: String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
return dateFormatter.string(from: lastUpdated!)
}
}