5e5122f172
Replace MIT with a restrictive source-available license and align README/docs copy. Add cloud polish acknowledgment, privacy manifest updates, voice history disclosure, export compliance metadata, and support links for App Store readiness.
17 lines
401 B
Swift
17 lines
401 B
Swift
// LegalLinks.swift
|
|
// OSGKeyboard · Main App
|
|
|
|
import Foundation
|
|
|
|
enum LegalLinks {
|
|
/// Public privacy policy (GitHub Pages).
|
|
static var privacyPolicyURL: URL? {
|
|
URL(string: "https://hkgood.github.io/OSGKeyboard/privacy/")
|
|
}
|
|
|
|
/// Support / feedback (GitHub Issues).
|
|
static var supportURL: URL? {
|
|
URL(string: "https://github.com/hkgood/OSGKeyboard/issues")
|
|
}
|
|
}
|