This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
public class CodableStorage { | |
fileprivate init() { } | |
enum Directory { | |
case documents | |
case caches | |
case shared // Use for sharing files between containers. Eg, with an app extension. |
NewerOlder