- import AppKit
- import Foundation
- enum AppLinks {
- static let website = URL(string: "https://sites.google.com/view/app-for-grammarly/home")!
- static let privacy = URL(string: "https://sites.google.com/view/app-for-grammarly/privacy-policy")!
- static let terms = URL(string: "https://sites.google.com/view/app-for-grammarly/terms-and-condition")!
- static let support = URL(string: "https://sites.google.com/view/app-for-grammarly/get-support")!
- static func open(_ url: URL) {
- NSWorkspace.shared.open(url)
- }
- }
|