aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Dependency.swift
blob: c2f4163063d3b675e02a5a5e1c9863f886b51a17 (plain)
1
2
3
4
5
6
7
8
extension WmapParser {
  /// A dependency between two components.
  public struct Dependency: Sendable, Equatable {
    public let fromComponent: String
    public let toComponent: String
    public let isDirected: Bool
  }
}