Current section

Files

Jump to
reach lib reach map cycle.ex
Raw

lib/reach/map/cycle.ex

defmodule Reach.Map.Cycle do
@moduledoc "Struct for a module dependency cycle with its components."
@derive JSON.Encoder
defstruct [:modules]
def new(attrs), do: struct!(__MODULE__, attrs)
end