Files
darwin-apk/Sources/apk/Index/ApkIndexProvides.swift
2024-11-10 17:51:53 +11:00

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)
}
}