Files
suixinkan_uikit/suixinkan/Config/AppAgreementURLs.swift

33 lines
971 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// AppAgreementURLs.swift
// suixinkan
//
import Foundation
/// App Android `AgreementRoutes`
enum AppAgreementURLs {
/// H5
nonisolated static var aboutUs: URL {
APIEnvironment.current.baseURL.appending(path: "h5/app/about-us")
}
/// H5
nonisolated static var privacyPolicy: URL {
APIEnvironment.current.baseURL.appending(path: "h5/app/privacy-policy")
}
/// H5
nonisolated static var userAgreement: URL {
APIEnvironment.current.baseURL.appending(path: "h5/app/user-agreement")
}
/// App H5
nonisolated static var appDownload: URL {
APIEnvironment.current.baseURL.appending(path: "h5/app/download")
}
///
nonisolated static let amapPrivacyPolicy = URL(string: "https://lbs.amap.com/pages/privacy/")!
}