| 123456789101112131415 |
- import Foundation
- enum AppLinks {
- static let appName = "App AI for Reddit"
- static let website = URL(string: "https://sites.google.com/view/appforreddit/home")!
- static let privacy = URL(string: "https://sites.google.com/view/appforreddit/privacy-policy")!
- static let terms = URL(string: "https://sites.google.com/view/appforreddit/terms-and-condition")!
- static let support = URL(string: "https://sites.google.com/view/appforreddit/get-support")!
- static let appStore = URL(string: "https://apps.apple.com/app/app-ai-for-reddit")!
- static var shareMessage: String {
- "Check out \(appName) — AI-powered tools for Reddit posts, titles, and comments."
- }
- }
|