mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 13:31:32 +00:00
22 lines
531 B
Swift
22 lines
531 B
Swift
/*
|
|
* darwin-apk © 2024 Gay Pizza Specifications
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import ArgumentParser
|
|
|
|
@main
|
|
struct DarwinApkCLI: AsyncParsableCommand {
|
|
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,
|
|
DpkSearchCommand.self,
|
|
DpkInfoCommand.self
|
|
])
|
|
}
|