mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 21:41:31 +00:00
basic package graph implemented
This commit is contained in:
@ -3,12 +3,10 @@
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
struct ApkIndexInstallIf: ApkIndexRequirementRef {
|
||||
let name: String
|
||||
let versionSpec: ApkVersionSpecification
|
||||
struct ApkIndexInstallIf: Hashable {
|
||||
let requirement: ApkRequirement
|
||||
|
||||
init(name: String, version spec: ApkVersionSpecification) {
|
||||
self.name = name
|
||||
self.versionSpec = spec
|
||||
init(requirement: ApkRequirement) {
|
||||
self.requirement = requirement
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user