13 lines
193 B
Swift
13 lines
193 B
Swift
//
|
|
// DateTimeProvider.swift
|
|
//
|
|
//
|
|
// Created by MainasuK on 2022-1-29.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol DateTimeProvider {
|
|
func shortTimeAgoSinceNow(to date: Date?) -> String?
|
|
}
|