mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-04 05:51:31 +00:00
13 lines
251 B
Swift
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
|
|
}
|
|
}
|