Files
darwin-apk/Sources/dpk-cli/CommandLine.swift

20 lines
470 B
Swift
Raw Normal View History

2024-11-10 17:51:53 +11:00
/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
2024-11-05 17:11:51 +11:00
import ArgumentParser
@main
struct DarwinApkCLI: ParsableCommand {
static let configuration = CommandConfiguration(
commandName: "dpk",
abstract: "Command-line interface for managing packages installed via darwin-apk.",
subcommands: [
DpkInstallCommand.self,
DpkRemoveCommand.self,
DpkUpdateCommand.self,
DpkUpgradeCommand.self
2024-11-05 17:11:51 +11:00
])
}