16 lines
521 B
Swift
16 lines
521 B
Swift
|
//
|
||
|
// Data+Constants.swift
|
||
|
// LocationsTests
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 10/04/2023.
|
||
|
// Copyright © 2023 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension Data {
|
||
|
enum Responses {
|
||
|
static let locations = "{\"locations\":[{\"name\":\"Amsterdam\",\"lat\":52.3547498,\"long\":4.8339215},{\"name\":\"Mumbai\",\"lat\":19.0823998,\"long\":72.8111468},{\"name\":\"Copenhagen\",\"lat\":55.6713442,\"long\":12.523785},{\"lat\":40.4380638,\"long\":-3.7495758}]}".data(using: .utf8)
|
||
|
}
|
||
|
}
|