mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-26 03:17:39 +08:00
16 lines
353 B
Swift
16 lines
353 B
Swift
//
|
|
// GithubAPIDateFormatter.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 5/15/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
private let dateFormatter = ISO8601DateFormatter()
|
|
func GithubAPIDateFormatter() -> ISO8601DateFormatter {
|
|
// https://developer.github.com/v3/#schema
|
|
return dateFormatter
|
|
}
|