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