Files
SWCompression/Sources/swcomp/Benchmarks/BenchmarkGroup.swift
T

21 lines
399 B
Swift

// Copyright (c) 2026 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
import SWCompression
import SwiftCLI
final class BenchmarkGroup: CommandGroup {
let name = "benchmark"
let shortDescription = "Benchmark-related commands"
let children: [Routable] = [
RunBenchmarkCommand(),
ShowBenchmarkCommand()
]
}