17 lines
324 B
Swift
17 lines
324 B
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
@main
|
|
struct CliVersionCommand: AsyncParsableCommand {
|
|
static var configuration: CommandConfiguration = .init(
|
|
commandName: "cli-version",
|
|
version: VERSION ?? "0.0.0",
|
|
subcommands: [
|
|
Build.self,
|
|
Bump.self,
|
|
Generate.self,
|
|
Update.self
|
|
]
|
|
)
|
|
}
|