Files
darwin-apk/Sources/apk/Index/ApkIndexInstallIf.swift

15 lines
325 B
Swift
Raw Normal View History

2024-11-10 17:51:53 +11:00
/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
struct ApkIndexInstallIf: ApkIndexRequirementRef {
let name: String
let versionSpec: ApkVersionSpecification
init(name: String, version spec: ApkVersionSpecification) {
self.name = name
self.versionSpec = spec
}
}