Files
OSGKeyboard/OSGKeyboard/Services/LegalLinks.swift
T
Rocky 5e5122f172 chore: adopt source-available license and strengthen privacy disclosures
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.
2026-06-21 16:45:29 +08:00

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")
}
}