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