AppLinks.swift 536 B

12345678910111213
  1. import AppKit
  2. import Foundation
  3. enum AppLinks {
  4. static let website = URL(string: "https://sites.google.com/view/app-for-grammarly/home")!
  5. static let privacy = URL(string: "https://sites.google.com/view/app-for-grammarly/privacy-policy")!
  6. static let terms = URL(string: "https://sites.google.com/view/app-for-grammarly/terms-and-condition")!
  7. static let support = URL(string: "https://sites.google.com/view/app-for-grammarly/get-support")!
  8. static func open(_ url: URL) {
  9. NSWorkspace.shared.open(url)
  10. }
  11. }