mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 21:41:31 +00:00
13 lines
293 B
Swift
13 lines
293 B
Swift
/*
|
|
* darwin-apk © 2024 Gay Pizza Specifications
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
struct ApkIndexProvides: ApkIndexRequirementRef {
|
|
let name: String
|
|
|
|
init(extract: String) throws(ApkRequirement.ParseError) {
|
|
(self.name, _) = try ApkRequirement.extract(blob: extract)
|
|
}
|
|
}
|