CityExploreApp / City Sights App / Helpers / Constants.swift
Constants.swift
Raw
//
//  Constants.swift
//  City Sights App
//
//  Created by Milos Ilic on 14.1.23..
//

import Foundation

struct Constants {
    
    static var apiKey = "oboEvGC5n4jSWX28uRfPAog-9P2L7Igna-3J5PC54e0GujwUuHEDV3HA9RPljXP24QiFfW9Ybeez5OGXF1s2Yq77lR8RnliMdqT9R6sOdy6cuUk5xhwXlVZlE4HCY3Yx"
    static var apiUrl = "https://api.yelp.com/v3/businesses/search"
    static var restaurantsKey = "restaurants"
    static var sightsKey = "arts"
    static var annotationReuseId = "business"
    
}