package edu.ttap.graphs;

/** An edge of the graph, capturing the source and destination nodes. */
public record Edge(String src, String dest) { }
