Files
SWCompression/Sources/swcomp/main.swift
Timofey Solomko 8af69fb15b Switch to the generalize-source branch of BBD
Additionally, adjust DecodingTree to make it work with the generalize-source branch.
2021-03-26 15:33:41 +02:00

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