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