mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-06 06:44:58 +00:00
19 lines
412 B
Swift
19 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"
|
||
|
}
|
||
|
|
||
|
}
|