mirror of https://github.com/cirruslabs/tart.git
7 lines
354 B
Swift
7 lines
354 B
Swift
import Foundation
|
|
|
|
protocol Disk {
|
|
static func push(diskURL: URL, registry: Registry, chunkSizeMb: Int, concurrency: UInt, progress: Progress) async throws -> [OCIManifestLayer]
|
|
static func pull(registry: Registry, diskLayers: [OCIManifestLayer], diskURL: URL, concurrency: UInt, progress: Progress, localLayerCache: LocalLayerCache?) async throws
|
|
}
|