You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
397 B
17 lines
397 B
// |
|
// Date+Bundle.swift |
|
// DateTools |
|
// |
|
// Created by Matthew York on 8/26/16. |
|
// Copyright © 2016 Matthew York. All rights reserved. |
|
// |
|
|
|
import Foundation |
|
|
|
public extension Bundle { |
|
|
|
class func dateToolsBundle() -> Bundle { |
|
let assetPath = Bundle(for: Constants.self).resourcePath! |
|
return Bundle(path: NSString(string: assetPath).appendingPathComponent("DateTools.bundle"))! |
|
} |
|
}
|
|
|