mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
18 lines
412 B
Swift
18 lines
412 B
Swift
//
|
|
// URLHelper.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct URLHelper {
|
|
static func getAustralianNumberURL() -> String {
|
|
return "https://www.covidsafe.gov.au/help-topics.html#verify-mobile-number-pin"
|
|
}
|
|
static func getHelpURL() -> String {
|
|
return "https://www.covidsafe.gov.au/help-topics.html"
|
|
}
|
|
|
|
}
|