├── .gitignore ├── Examples ├── CloudStorage+Codable.swift ├── CloudStorage-Example2 │ ├── CloudStorage-Example2.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── CloudStorage-Example2 │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── CloudStorage-Example2.entitlements │ │ ├── CloudStorage_Example2App.swift │ │ ├── ContentView.swift │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── CloudStorage-iOS14 │ ├── CloudStorage-iOS14.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── CloudStorage-iOS14 │ │ ├── ContentView.swift │ │ ├── MyColor.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── Resources │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── CloudStorage-iOS14.entitlements │ │ ├── Info.plist │ │ └── SceneDelegate.swift └── CloudStorage-tvOS14 │ ├── CloudStorage-tvOS14.xcodeproj │ ├── .project.pbxproj.swp │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── CloudStorage-tvOS14 │ ├── CloudStorage_tvOS13App.swift │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── Resources │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ └── Contents.json │ ├── CloudStorage-tvOS14.entitlements │ └── Info.plist ├── LICENSE ├── Package.swift ├── README.md └── Sources └── CloudStorage ├── CloudStorage.swift └── CloudStorageSync.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/CloudStorage+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage+Codable.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/CloudStorage-Example2.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/CloudStorage-Example2.entitlements -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/CloudStorage_Example2App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/CloudStorage_Example2App.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/ContentView.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-Example2/CloudStorage-Example2/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-Example2/CloudStorage-Example2/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/ContentView.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/MyColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/MyColor.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/CloudStorage-iOS14.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/CloudStorage-iOS14.entitlements -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/Info.plist -------------------------------------------------------------------------------- /Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-iOS14/CloudStorage-iOS14/Resources/SceneDelegate.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/.project.pbxproj.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/.project.pbxproj.swp -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/CloudStorage_tvOS13App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/CloudStorage_tvOS13App.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/ContentView.swift -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/CloudStorage-tvOS14.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/CloudStorage-tvOS14.entitlements -------------------------------------------------------------------------------- /Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Examples/CloudStorage-tvOS14/CloudStorage-tvOS14/Resources/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CloudStorage/CloudStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Sources/CloudStorage/CloudStorage.swift -------------------------------------------------------------------------------- /Sources/CloudStorage/CloudStorageSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonstrict-hq/CloudStorage/HEAD/Sources/CloudStorage/CloudStorageSync.swift --------------------------------------------------------------------------------