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