mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-04 05:51:31 +00:00
14 lines
352 B
Swift
14 lines
352 B
Swift
/*
|
|
* darwin-apk © 2024 Gay Pizza Specifications
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
struct ApkIndexInstallIf: ApkIndexRequirementRef {
|
|
let name: String
|
|
let versionSpec: ApkVersionSpecification
|
|
|
|
init(extract: String) throws(ApkRequirement.ParseError) {
|
|
(self.name, self.versionSpec) = try ApkRequirement.extract(blob: extract)
|
|
}
|
|
}
|