AppLinks.swift 626 B

123456789101112
  1. import Foundation
  2. enum AppLinks {
  3. static let appName = "App AI for Reddit"
  4. static let website = URL(string: "https://sites.google.com/view/appforreddit/home")!
  5. static let privacy = URL(string: "https://sites.google.com/view/appforreddit/privacy-policy")!
  6. static let terms = URL(string: "https://sites.google.com/view/appforreddit/terms-and-condition")!
  7. static let support = URL(string: "https://sites.google.com/view/appforreddit/get-support")!
  8. static let appStoreID = "6785831537"
  9. static let appStoreWriteReview = URL(string: "https://apps.apple.com/app/id\(appStoreID)?action=write-review")!
  10. }