Files
swift-bump-version/Sources/cli-version/Application.swift
Michael Housh 1972260317
Some checks failed
CI / macOS (debug, 16.1) (push) Has been cancelled
CI / macOS (release, 16.1) (push) Has been cancelled
CI / Ubuntu (push) Failing after 5s
feat: Adds git client tests, restructures files.
2024-12-24 14:42:28 -05:00

18 lines
387 B
Swift

import ArgumentParser
import Foundation
@main
struct Application: AsyncParsableCommand {
static let configuration: CommandConfiguration = .init(
commandName: "bump-version",
version: VERSION ?? "0.0.0",
subcommands: [
BuildCommand.self,
BumpCommand.self,
GenerateCommand.self,
UtilsCommand.self
],
defaultSubcommand: BumpCommand.self
)
}