mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
17 lines
262 B
Swift
17 lines
262 B
Swift
//
|
|
// Countries.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Joel Kek. All rights reserved.
|
|
//
|
|
|
|
struct CountriesData {
|
|
|
|
static let countryArray = ["Australia"]
|
|
|
|
static let countryCodes =
|
|
[
|
|
"Australia": "+61"
|
|
]
|
|
|
|
}
|