Files
SWCompression/Sources/swcomp/main.swift
T

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()