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

13 lines
244 B
Swift
Raw Normal View History

2024-11-10 17:51:53 +11:00
/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
2024-11-17 02:31:44 +11:00
public struct ApkIndexProvides: Hashable, Sendable {
let name: String
2024-11-11 21:06:37 +11:00
init(requirement: ApkRequirement) {
self.name = requirement.name
}
}