mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-10 15:23:27 +01:00
26 lines
531 B
Swift
26 lines
531 B
Swift
//
|
|
// StoreAppPolicy.swift
|
|
// AltStore
|
|
//
|
|
// Created by Riley Testut on 9/14/19.
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import CoreData
|
|
|
|
@objc(StoreAppToStoreAppMigrationPolicy)
|
|
class StoreAppToStoreAppMigrationPolicy: NSEntityMigrationPolicy
|
|
{
|
|
@objc(migrateIconURL)
|
|
func migrateIconURL() -> URL
|
|
{
|
|
return URL(string: "https://via.placeholder.com/150")!
|
|
}
|
|
|
|
@objc(migrateScreenshotURLs)
|
|
func migrateScreenshotURLs() -> NSCopying
|
|
{
|
|
return [] as NSArray
|
|
}
|
|
}
|