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
|
2024-11-15 19:54:35 +11:00
|
|
|
struct DarwinApkCLI: AsyncParsableCommand {
|
2024-11-05 17:11:51 +11:00
|
|
|
static let configuration = CommandConfiguration(
|
|
|
|
commandName: "dpk",
|
|
|
|
abstract: "Command-line interface for managing packages installed via darwin-apk.",
|
|
|
|
subcommands: [
|
2024-11-08 21:22:33 +11:00
|
|
|
DpkInstallCommand.self,
|
|
|
|
DpkRemoveCommand.self,
|
|
|
|
DpkUpdateCommand.self,
|
2024-11-15 19:54:35 +11:00
|
|
|
DpkUpgradeCommand.self,
|
2024-11-23 20:06:45 +11:00
|
|
|
DpkSearchCommand.self,
|
2024-11-23 21:02:52 +11:00
|
|
|
DpkInfoCommand.self,
|
|
|
|
DpkGraphCommand.self
|
2024-11-05 17:11:51 +11:00
|
|
|
])
|
|
|
|
}
|