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

10 lines
239 B
Swift

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