This PR contains the work done to fix the naming of the libraries and the package, along with tweaks to the folder structure. Reviewed-on: #22 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
11 lines
194 B
Swift
11 lines
194 B
Swift
import Foundation
|
|
|
|
public extension TimeZone {
|
|
|
|
// MARK: Zones
|
|
|
|
/// A time zone indicating it is Greenwich Mean Time or UTC+0
|
|
static let gmt = TimeZone(secondsFromGMT: 0)
|
|
|
|
}
|