mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
15 lines
296 B
Swift
15 lines
296 B
Swift
// Copyright (c) 2026 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
/// A type that represents an archive.
|
|
public protocol Archive {
|
|
|
|
/// Unarchive data from the archive.
|
|
static func unarchive(archive: Data) throws -> Data
|
|
|
|
}
|