Files
Timofey Solomko 4ec437e912 [swcomp] Add benchmark convert command
This command converts save file from old format to the new one.
2026-02-12 21:44:35 +08:00

23 lines
453 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(),
RemoveRunCommand(),
ConvertCommand()
]
}