mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 21:41:31 +00:00
15 lines
325 B
Swift
15 lines
325 B
Swift
/*
|
|
* 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
|
|
}
|
|
}
|