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

17 lines
416 B
Swift

// SPDX-License-Identifier: Apache-2.0
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
])
}