Files
SWCompression/Sources/swcomp/Benchmarks/Info7z.swift

21 lines
436 B
Swift

// Copyright (c) 2021 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
import SWCompression
import SwiftCLI
class Info7z: BenchmarkCommand {
let name = "info-7z"
let shortDescription = "7-Zip info function"
let files = CollectedParameter()
let benchmarkName = "7-Zip info function"
let benchmarkFunction: (Data) throws -> Any = SevenZipContainer.info
}