Files
swift-bump-version/Sources/bump-version/Application.swift
Michael Housh 322327d6d7
All checks were successful
CI / Ubuntu (push) Successful in 2m55s
feat: Renaming to bump-version
2024-12-24 16:39:38 -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
)
}