- //
- // Constants.swift
- // LiveLikeGiphyChallenge
- //
- // Created by Irina Smokvarska on 2/1/22.
- //
- import Foundation
- class Constants {
- static let apiKey: String = "26hInJ9wsFMTYRe6KiSPzONPMhv1gHMx"
- static let trendingUrlPath = "https://api.giphy.com/v1/gifs/trending"
- static let searchUrlPath = "https://api.giphy.com/v1/gifs/search"
- }
|