mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
19 lines
582 B
Swift
19 lines
582 B
Swift
//
|
|
// CovidPersistentContainer.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import CoreData
|
|
|
|
class CovidPersistentContainer: NSPersistentContainer {
|
|
override class func defaultDirectoryURL() -> URL {
|
|
do {
|
|
let appSupport = try FileManager.default.url(for: .applicationSupportDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
|
|
return appSupport.appendingPathComponent("covidsafe", isDirectory: true)
|
|
} catch {
|
|
return super.defaultDirectoryURL()
|
|
}
|
|
}
|
|
}
|