Files
darwin-apk/Sources/apk/Index/ApkIndexProvides.swift
2024-11-22 20:19:49 +11:00

13 lines
251 B
Swift

/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
public struct ApkIndexProvides: Hashable, Sendable {
let name: String
init(requirement: ApkVersionRequirement) {
self.name = requirement.name
}
}