mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
24 lines
709 B
Swift
24 lines
709 B
Swift
// Copyright (c) 2018 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
import SWCompression
|
|
import SwiftCLI
|
|
|
|
let cli = CLI(name: "swcomp", version: "4.2.2",
|
|
description: """
|
|
swcomp - 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()
|