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

15 lines
282 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
*/
import Foundation
2024-11-17 02:31:44 +11:00
public struct ApkIndexDependency: Hashable, Sendable {
2024-11-11 21:06:37 +11:00
let requirement: ApkRequirement
2024-11-11 21:06:37 +11:00
init(requirement: ApkRequirement) {
self.requirement = requirement
}
}