mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
8af69fb15b
Additionally, adjust DecodingTree to make it work with the generalize-source branch.
24 lines
733 B
Swift
24 lines
733 B
Swift
// Copyright (c) 2021 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
import SWCompression
|
|
import SwiftCLI
|
|
|
|
let cli = CLI(name: "swcomp", version: "5.0.0-dev+generalize-source",
|
|
description: """
|
|
swcomp - a small command-line client for SWCompression framework.
|
|
Serves as an example of SWCompression usage.
|
|
""")
|
|
cli.commands = [XZCommand(),
|
|
LZMACommand(),
|
|
BZip2Command(),
|
|
GZipCommand(),
|
|
ZipCommand(),
|
|
TarCommand(),
|
|
SevenZipCommand(),
|
|
BenchmarkGroup()]
|
|
cli.goAndExit()
|