bugfix/communications #8

Merged
javier merged 2 commits from bugfix/communications into main 2023-04-19 14:17:15 +00:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit e9d9c9e475 - Show all commits

View File

@ -17,6 +17,7 @@ public class MockURLProtocol: URLProtocol {
// MARK: Properties
/// The dictionary in which the mock requests with its respective mock responses will be injected.
public static var mockData: [MockURLRequest: MockURLResponse] = [:]
// MARK: Functions

View File

@ -0,0 +1,10 @@
import Foundation
public extension TimeZone {
// MARK: Zones
/// Greenwich Mean Time or UTC+0
static let gmt = TimeZone(secondsFromGMT: 0)
}