Constants.swift 317 B

12345678910111213141516171819
  1. //
  2. // Constants.swift
  3. // LiveLikeGiphyChallenge
  4. //
  5. // Created by Ljupco Nastevski on 30.1.22.
  6. //
  7. import Foundation
  8. struct Constants {
  9. static let GiphyApiKey = "JUMJggLCBhTudfXShZ6fsFED1l4WV7Wa"
  10. static let GiphyPaginationLimit = 50
  11. static let GiphyBaseUrl = "https://api.giphy.com"
  12. }