mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
17 lines
387 B
Swift
17 lines
387 B
Swift
// Copyright (c) 2018 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
import SwiftCLI
|
|
|
|
class BenchmarkGroup: CommandGroup {
|
|
|
|
let name = "benchmark"
|
|
let shortDescription = "Commands for benchmarking"
|
|
|
|
let children: [Routable] = [UnGzip(), UnXz(), UnBz2(), InfoTar(), InfoZip(), Info7z(), CompDeflate(), CompBz2()]
|
|
|
|
}
|