mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
17 lines
322 B
Swift
17 lines
322 B
Swift
// Copyright (c) 2017 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
public protocol Container {
|
|
|
|
associatedtype Entry: ContainerEntry
|
|
|
|
static func open(container: Data) throws -> [Entry]
|
|
|
|
static func info(container: Data) throws -> [Entry.Info]
|
|
|
|
}
|