mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 13:31:32 +00:00
13 lines
227 B
Swift
13 lines
227 B
Swift
/*
|
|
* darwin-apk © 2024 Gay Pizza Specifications
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
struct ApkIndexProvides: Hashable {
|
|
let name: String
|
|
|
|
init(requirement: ApkRequirement) {
|
|
self.name = requirement.name
|
|
}
|
|
}
|