Files
darwin-apk/Sources/apk/Index/ApkIndexProvides.swift
a dinosaur e7fc47d640 make ApkIndexDependency conform to ApkIndexRequirementRef
dunno if this is necessary for the graph to work but we'll see
2024-11-10 21:00:07 +11:00

13 lines
250 B
Swift

/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
struct ApkIndexProvides: ApkIndexRequirementRef {
let name: String
init(name: String, version _: ApkVersionSpecification) {
self.name = name
}
}