mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-13 09:14:44 +08:00
17 lines
395 B
Swift
17 lines
395 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 = DateFormatter()
|
|
func GithubAPIDateFormatter() -> DateFormatter {
|
|
// https://developer.github.com/v3/#schema
|
|
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
|
|
return dateFormatter
|
|
}
|