Constants.swift 345 B

123456789101112131415
  1. //
  2. // Constants.swift
  3. // LiveLikeGiphyChallenge
  4. //
  5. // Created by Irina Smokvarska on 2/1/22.
  6. //
  7. import Foundation
  8. class Constants {
  9. static let apiKey: String = "26hInJ9wsFMTYRe6KiSPzONPMhv1gHMx"
  10. static let trendingUrlPath = "https://api.giphy.com/v1/gifs/trending"
  11. static let searchUrlPath = "https://api.giphy.com/v1/gifs/search"
  12. }