mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
4ec437e912
This command converts save file from old format to the new one.
23 lines
453 B
Swift
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()
|
|
]
|
|
|
|
}
|